Home
last modified time | relevance | path

Searched refs:prev (Results 1 – 25 of 84) sorted by last modified time

1234

/PHP-5.5/sapi/thttpd/
H A Dthttpd.c631 qreq_t *m, *prev = NULL; local
637 if (prev)
638 if (!(prev->next = m->next))
639 last_qr = prev;
648 prev = m;
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_children.c98 child->next->prev = child; in fpm_child_link()
100 child->prev = 0; in fpm_child_link()
110 if (child->prev) { in fpm_child_unlink()
111 child->prev->next = child->next; in fpm_child_unlink()
117 child->next->prev = child->prev; in fpm_child_unlink()
H A Dfpm_children.h23 struct fpm_child_s *prev, *next; member
H A Dfpm_events.c159 elt->prev = NULL; in fpm_event_queue_add()
164 (*queue)->prev = elt; in fpm_event_queue_add()
187 if (q->prev) { in fpm_event_queue_del()
188 q->prev->next = q->next; in fpm_event_queue_del()
191 q->next->prev = q->prev; in fpm_event_queue_del()
196 (*queue)->prev = NULL; in fpm_event_queue_del()
437 if (q->prev) { in fpm_event_loop()
438 q->prev->next = q->next; in fpm_event_loop()
441 q->next->prev = q->prev; in fpm_event_loop()
446 fpm_event_queue_timer->prev = NULL; in fpm_event_loop()
H A Dfpm_events.h27 struct fpm_event_queue_s *prev; member
/PHP-5.5/sapi/apache_hooks/
H A Dphp_apache.c1821 if (r->prev) { in PHP_FUNCTION()
1822 r = r->prev; in PHP_FUNCTION()
/PHP-5.5/sapi/apache/
H A Dphp_apache.c448 if(r->prev) r = r->prev; in PHP_FUNCTION()
/PHP-5.5/sapi/apache2filter/
H A Dphp_functions.c238 while(ctx->f->r->prev) { in PHP_FUNCTION()
239 ctx->f->r = ctx->f->r->prev; in PHP_FUNCTION()
267 while(ctx->f->r->prev) { in PHP_FUNCTION()
268 ctx->f->r = ctx->f->r->prev; in PHP_FUNCTION()
/PHP-5.5/sapi/apache2handler/
H A Dphp_functions.c271 while(r->prev) { in PHP_FUNCTION()
272 r = r->prev; in PHP_FUNCTION()
307 while(r->prev) { in PHP_FUNCTION()
308 r = r->prev; in PHP_FUNCTION()
/PHP-5.5/main/streams/
H A Dfilter.c195 bucket->prev = NULL; in php_stream_bucket_prepend()
198 brigade->head->prev = bucket; in php_stream_bucket_prepend()
212 bucket->prev = brigade->tail; in php_stream_bucket_append()
226 if (bucket->prev) { in php_stream_bucket_unlink()
232 bucket->next->prev = bucket->prev; in php_stream_bucket_unlink()
319 filter->prev = NULL; in php_stream_filter_prepend_ex()
322 chain->head->prev = filter; in php_stream_filter_prepend_ex()
341 filter->prev = chain->tail; in php_stream_filter_append_ex()
425 filter->prev->next = NULL; in _php_stream_filter_append()
515 if (filter->prev) { in php_stream_filter_remove()
[all …]
H A Dphp_stream_filter_api.h45 php_stream_bucket *next, *prev; member
112 php_stream_filter *prev; member
/PHP-5.5/
H A Dltmain.sh145 prev=
479 prev=
548 prev=tag
554 prev=tag
1162 prev=
1477 prev=
1900 prev=
1973 prev=
1977 prev=
5843 prev=
[all …]
/PHP-5.5/main/
H A DSAPI.c611 if (current->prev) { in sapi_remove_header()
612 current->prev->next = next; in sapi_remove_header()
617 next->prev = current->prev; in sapi_remove_header()
619 l->tail = current->prev; in sapi_remove_header()
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dqueue.c299 q->head->prev = NULL; in Q_PushHead()
307 n->prev = q->head; in Q_PushHead()
352 q->tail->prev = NULL; in Q_PushTail()
356 q->tail->prev = (datanode *)p; in Q_PushTail()
408 q->head->prev = NULL; in Q_PopHead()
442 p = q->tail->prev; in Q_PopTail()
512 if(q->cursor->prev == NULL) in Q_Previous()
515 q->cursor = (node *)q->cursor->prev; in Q_Previous()
539 p = ((node*)iter)->prev; in Q_Iter_Del()
557 n->prev = p; in Q_Iter_Del()
[all …]
H A Dqueue.h31 datanode *prev, *next ; member
86 #define Q_Iter_Prev_F(qi) (qi ? (q_iter)((node*)qi)->prev : NULL)
/PHP-5.5/ext/xml/
H A Dcompat.c27 void *prev; member
/PHP-5.5/ext/standard/tests/array/
H A Dprev_basic.phpt2 Test prev() function : basic functionality
5 /* Prototype : mixed prev(array $array_arg)
11 * Test basic functionality of prev()
14 echo "*** Testing prev() : basic functionality ***\n";
19 var_dump(prev($array));
22 var_dump(prev($array));
25 var_dump(prev($array));
32 var_dump(prev($array2));
38 *** Testing prev() : basic functionality ***
H A Dprev_error1.phpt2 Test prev() function : error conditions - Pass incorrect number of arguments
5 /* Prototype : mixed prev(array $array_arg)
11 * Pass incorrect number of arguments to prev() to test behaviour
14 echo "*** Testing prev() : error conditions ***\n";
17 echo "\n-- Testing prev() function with Zero arguments --\n";
18 var_dump( prev() );
20 //Test prev with one more than the expected number of arguments
24 var_dump( prev($array_arg, $extra_arg) );
28 *** Testing prev() : error conditions ***
30 -- Testing prev() function with Zero arguments --
[all …]
H A Dprev_error2.phpt2 prev - ensure warning is received when passing an indirect temporary.
5 /* Prototype : mixed prev(array $array_arg)
11 * Pass temporary variables to prev() to test behaviour
21 var_dump(prev(f()));
H A Dprev_variation1.phpt2 Test prev() function : usage variation - Pass different data types as $array_arg
5 /* Prototype : mixed prev(array $array_arg)
11 * Pass different data types as $array_arg argument to prev() to test behaviour
14 echo "*** Testing prev() : variation ***\n";
85 // loop through each element of $inputs to check the behavior of prev()
89 var_dump( prev($input) );
97 *** Testing prev() : variation ***
146 Warning: prev() expects parameter 1 to be array, null given in %s on line %d
151 Warning: prev() expects parameter 1 to be array, null given in %s on line %d
207 Warning: prev() expects parameter 1 to be array, null given in %s on line %d
[all …]
H A Dprev_variation2.phpt2 Test prev() function : usage variation - Multi-dimensional arrays
5 /* Prototype : mixed prev(array $array_arg)
11 * Test prev() when passed:
17 echo "*** Testing prev() : usage variations ***\n";
26 var_dump(prev($array_arg));
27 var_dump(prev($array_arg));
30 var_dump(prev($array_arg[0]));
34 *** Testing prev() : usage variations ***
H A Dprev_error3.phpt2 prev - ensure we cannot pass a temporary
5 /* Prototype : mixed prev(array $array_arg)
11 * Pass temporary variables to prev() to test behaviour
15 var_dump(prev(array(1, 2)));
H A Dbug35022.phpt8 for ( $contentDict = end( $state ); $contentDict !== false; $contentDict = prev( $state ) ) {
/PHP-5.5/ext/standard/
H A Dphp_array.h45 PHP_FUNCTION(prev);
H A Dbasic_functions.c3304 PHP_FE(prev, arginfo_prev)

Completed in 64 milliseconds

1234