Home
last modified time | relevance | path

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

1234

/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_children.c100 child->next->prev = child; in fpm_child_link()
102 child->prev = 0; in fpm_child_link()
112 if (child->prev) { in fpm_child_unlink()
113 child->prev->next = child->next; in fpm_child_unlink()
119 child->next->prev = child->prev; in fpm_child_unlink()
H A Dfpm_events.c170 elt->prev = NULL; in fpm_event_queue_add()
175 (*queue)->prev = elt; in fpm_event_queue_add()
198 if (q->prev) { in fpm_event_queue_del()
199 q->prev->next = q->next; in fpm_event_queue_del()
202 q->next->prev = q->prev; in fpm_event_queue_del()
207 (*queue)->prev = NULL; in fpm_event_queue_del()
448 if (q->prev) { in fpm_event_loop()
449 q->prev->next = q->next; in fpm_event_loop()
452 q->next->prev = q->prev; in fpm_event_loop()
457 fpm_event_queue_timer->prev = NULL; in fpm_event_loop()
H A Dfpm_php_trace.c80 long prev; in fpm_php_trace_dump() local
129 execute_data = prev = l; in fpm_php_trace_dump()
131 while (prev) { in fpm_php_trace_dump()
134 if (0 > fpm_trace_get_long(prev + offsetof(zend_execute_data, func), &l)) { in fpm_php_trace_dump()
160 if (0 > fpm_trace_get_long(prev + offsetof(zend_execute_data, opline), &l)) { in fpm_php_trace_dump()
177 if (0 > fpm_trace_get_long(prev + offsetof(zend_execute_data, prev_execute_data), &l)) { in fpm_php_trace_dump()
181 prev = l; in fpm_php_trace_dump()
/PHP-7.3/ext/simplexml/
H A Dsimplexml.c1060 if (node->children != NULL || node->prev != NULL || node->next != NULL) { in sxe_prop_is_empty()
1181 if (node->children != NULL || node->prev != NULL || node->next != NULL) { in sxe_get_prop_hash()
/PHP-7.3/build/
H A Dlibtool.m4524 prev=:
531 prev="$cmd"
534 if test "$prev" != 'sed 50q "[$]0"'; then
535 echo_test_string=`eval $prev`
3876 prev=$p
3879 prev=
3889 _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
3891 …C_TAGVAR(compiler_lib_search_path, $1)="${_LT_AC_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
3899 _LT_AC_TAGVAR(postdeps, $1)="${prev}${p}"
3901 _LT_AC_TAGVAR(postdeps, $1)="${_LT_AC_TAGVAR(postdeps, $1)} ${prev}${p}"
/PHP-7.3/ext/mbstring/oniguruma/src/
H A Dregcomp.c817 UChar *p, *prev; in compile_length_string_node() local
827 p = prev = sn->s; in compile_length_string_node()
841 prev = p; in compile_length_string_node()
901 UChar *p, *prev, *end; in compile_string_node() local
914 p = prev = sn->s; in compile_string_node()
928 prev = p; in compile_string_node()
1344 reg->options = prev; in compile_length_option_node()
1357 reg->options = prev; in compile_option_node()
3881 Node* prev; in reduce_string_list() local
3891 if (IS_NULL(prev) || STR_(curr)->flag != STR_(prev)->flag) { in reduce_string_list()
[all …]
/PHP-7.3/Zend/
H A Dzend_hash.c1144 if (prev) { in _zend_hash_del_el_ex()
1190 Bucket *prev = NULL; in _zend_hash_del_el() local
1221 Bucket *prev = NULL; in zend_hash_del() local
1239 prev = p; in zend_hash_del()
1251 Bucket *prev = NULL; in zend_hash_del_ind() local
1287 prev = p; in zend_hash_del_ind()
1299 Bucket *prev = NULL; in zend_hash_str_del_ind() local
1331 prev = p; in zend_hash_str_del_ind()
1343 Bucket *prev = NULL; in zend_hash_str_del() local
1361 prev = p; in zend_hash_str_del()
[all …]
H A Dzend_generators.c434 zend_execute_data *prev = ptr->prev_execute_data; in zend_generator_check_placeholder_frame() local
437 generator->execute_data->prev_execute_data = prev; in zend_generator_check_placeholder_frame()
438 prev = generator->execute_data; in zend_generator_check_placeholder_frame()
442 generator->execute_data->prev_execute_data = prev; in zend_generator_check_placeholder_frame()
H A Dzend_execute.c177 static zend_always_inline zend_vm_stack zend_vm_stack_new_page(size_t size, zend_vm_stack prev) { in zend_vm_stack_new_page() argument
182 page->prev = prev; in zend_vm_stack_new_page()
210 zend_vm_stack p = stack->prev; in zend_vm_stack_destroy()
2675 EG(vm_stack)->prev->top = (zval*)call; in zend_vm_stack_copy_call_frame()
2678 if (UNEXPECTED(EG(vm_stack)->prev->top == ZEND_VM_STACK_ELEMENTS(EG(vm_stack)->prev))) { in zend_vm_stack_copy_call_frame()
2679 zend_vm_stack r = EG(vm_stack)->prev; in zend_vm_stack_copy_call_frame()
2681 EG(vm_stack)->prev = r->prev; in zend_vm_stack_copy_call_frame()
H A Dzend_builtin_functions.c2420 while (prev) { in ZEND_FUNCTION()
2424 prev = NULL; in ZEND_FUNCTION()
2427 if (prev->func && ZEND_USER_CODE(prev->func->common.type)) { in ZEND_FUNCTION()
2428 …zend_printf(") called at [%s:%d]\n", ZSTR_VAL(prev->func->op_array.filename), prev->opline->lineno… in ZEND_FUNCTION()
2431 prev_call = prev; in ZEND_FUNCTION()
2432 prev = prev->prev_execute_data; in ZEND_FUNCTION()
2434 if (!prev) { in ZEND_FUNCTION()
2530 while (prev) { in zend_fetch_debug_backtrace()
2537 if (prev->func && ZEND_USER_CODE(prev->func->common.type)) { in zend_fetch_debug_backtrace()
2544 prev_call = prev; in zend_fetch_debug_backtrace()
[all …]
H A Dzend_alloc.c280 zend_mm_chunk *prev; member
821 chunk->prev = heap->main_chunk->prev;
1045 chunk->next->prev = chunk->prev;
1094 chunk->next->prev = chunk->prev;
1736 if (prev) {
1745 prev = list;
1898 chunk->prev = chunk;
2124 prev = p;
2126 p = prev->next;
2322 p->prev = p;
[all …]
/PHP-7.3/ext/soap/
H A Dsoap.c111 while (EG(vm_stack)->prev != NULL && \
114 zend_vm_stack tmp = EG(vm_stack)->prev; \
/PHP-7.3/ext/standard/
H A Darray.c1149 PHP_FUNCTION(prev) in PHP_FUNCTION() argument
H A Dbasic_functions.c3346 PHP_FE(prev, arginfo_prev)
/PHP-7.3/sapi/phpdbg/
H A Dphpdbg.c270 phpdbg_oplog_list *prev = cur->prev; in PHP_MSHUTDOWN_FUNCTION() local
272 cur = prev; in PHP_MSHUTDOWN_FUNCTION()
460 phpdbg_oplog_list *prev; in PHP_FUNCTION() local
466 prev = PHPDBG_G(oplog_list); in PHP_FUNCTION()
468 if (!prev) { in PHP_FUNCTION()
476 PHPDBG_G(oplog_list)->prev = prev; in PHP_FUNCTION()
638 phpdbg_oplog_list *prev; in PHP_FUNCTION() local
655 prev = PHPDBG_G(oplog_list)->prev; in PHP_FUNCTION()
658 PHPDBG_G(oplog_list) = prev; in PHP_FUNCTION()
731 if (!prev) { in PHP_FUNCTION()
H A Dphpdbg_wait.c265 if (elm->prev) { in phpdbg_webdata_decompress()
266 elm->prev->next = elm->next; in phpdbg_webdata_decompress()
271 elm->next->prev = elm->prev; in phpdbg_webdata_decompress()
273 zend_extensions.tail = elm->prev; in phpdbg_webdata_decompress()
H A Dphpdbg_watch.c646 phpdbg_watch_element *prev; local
648 if ((prev = zend_hash_find_ptr(&PHPDBG_G(watch_recreation), element->str))) {
649 phpdbg_watch_element *child = prev;
660 phpdbg_dissociate_watch_element(element, prev);
H A Dphpdbg_opcode.h42 phpdbg_oplog_list *prev; member
/PHP-7.3/ext/session/
H A Dsession.c1279 if (current->prev) { in php_session_remove_cookie()
1280 current->prev->next = next; in php_session_remove_cookie()
1285 next->prev = current->prev; in php_session_remove_cookie()
1287 l->tail = current->prev; in php_session_remove_cookie()
/PHP-7.3/ext/spl/
H A Dspl_dllist.c198 elem->prev = NULL; in spl_ptr_llist_unshift()
222 elem->prev = llist->tail; in spl_ptr_llist_push()
250 if (tail->prev) { in spl_ptr_llist_pop()
251 tail->prev->next = NULL; in spl_ptr_llist_pop()
260 tail->prev = NULL; in spl_ptr_llist_pop()
885 if (element->prev) { in SPL_METHOD()
890 element->next->prev = element->prev; in SPL_METHOD()
960 zval prev; in spl_dllist_it_helper_move_forward() local
969 zval prev; in spl_dllist_it_helper_move_forward() local
1267 elem->prev = element->prev; in SPL_METHOD()
[all …]
/PHP-7.3/ext/fileinfo/
H A Dlibmagic.patch289 mlist->next = mlist->prev = mlist;
/PHP-7.3/ext/dom/
H A Dnode.c518 prevsib = nodep->prev; in dom_node_previous_sibling_read()
884 newchild->prev = prevsib; in _php_dom_insert_fragment()
889 nextsib->prev = fragment->last; in _php_dom_insert_fragment()
982 (refp->prev != NULL && refp->prev->type == XML_TEXT_NODE))) { in PHP_FUNCTION()
989 new_child->prev = refp->prev; in PHP_FUNCTION()
990 refp->prev = new_child; in PHP_FUNCTION()
991 if (new_child->prev != NULL) { in PHP_FUNCTION()
992 new_child->prev->next = new_child; in PHP_FUNCTION()
1039 new_child->prev = child; in PHP_FUNCTION()
1139 prevsib = oldchild->prev; in PHP_FUNCTION()
[all …]
/PHP-7.3/win32/
H A Dcodepage.c403 char *cur = (char *)env, *prev; in php_win32_cp_env_any_to_w() local
423 prev = cur; in php_win32_cp_env_any_to_w()
425 } while (NULL != (cur = strchr(prev, '\0')) && cur++ && *cur && bin_len + (cur - prev) < 32760); in php_win32_cp_env_any_to_w()
/PHP-7.3/sapi/cli/tests/
H A Dupload_2G.phpt49 $prev = "----123
53 $total = $length + strlen($prev) + strlen($post);
61 {$prev}
63 ) or die("write prev failed");
/PHP-7.3/sapi/apache2handler/
H A Dphp_functions.c269 while(r->prev) { in PHP_FUNCTION()
270 r = r->prev; in PHP_FUNCTION()
305 while(r->prev) { in PHP_FUNCTION()
306 r = r->prev; in PHP_FUNCTION()

Completed in 206 milliseconds

1234