Home
last modified time | relevance | path

Searched refs:stack (Results 76 – 100 of 105) sorted by path

12345

/PHP-7.2/ext/standard/tests/serialize/
H A Dbug69793.phpt2 Bug #69793: Remotely triggerable stack exhaustion via recursive method calls
/PHP-7.2/ext/wddx/tests/
H A Dbug73631.phpt2 Bug #73631 (Memory leak due to invalid wddx stack processing)
/PHP-7.2/ext/wddx/
H A Dwddx.c175 stack->top = 0; in wddx_stack_init()
179 stack->done = 0; in wddx_stack_init()
190 stack->elements = (void **) erealloc(stack->elements, in wddx_stack_push()
193 stack->elements[stack->top] = (void *) emalloc(size); in wddx_stack_push()
194 memcpy(stack->elements[stack->top], element, size); in wddx_stack_push()
204 *element = stack->elements[stack->top - 1]; in wddx_stack_top()
804 if (stack->varname) efree(stack->varname); in php_wddx_push_element()
901 stack->top--; in php_wddx_pop_element()
938 stack->top--; in php_wddx_pop_element()
1016 stack->top--; in php_wddx_pop_element()
[all …]
/PHP-7.2/ext/xsl/tests/
H A Dbug71540.phpt61 Warning: XSLTProcessor::transformToXml(): xmlXPathCompiledEval: 2 objects left on the stack. in %sb…
/PHP-7.2/main/
H A Dalloca.c421 long size, pseg, this_segment, stack; in i00afunc() local
/PHP-7.2/
H A Dphp.ini-development1009 ;the available process stack and eventually crash PHP (due to reaching the
1010 ;stack size limit imposed by the Operating System).
H A Dphp.ini-production1011 ;the available process stack and eventually crash PHP (due to reaching the
1012 ;stack size limit imposed by the Operating System).
/PHP-7.2/sapi/cgi/
H A Dconfig.w327 ADD_FLAG("LDFLAGS_CGI", "/stack:67108864");
/PHP-7.2/sapi/cgi/tests/
H A Dapache_request_headers.phpt2 apache_request_headers() stack overflow.
/PHP-7.2/sapi/cli/
H A Dconfig.w3215 ADD_FLAG("LDFLAGS_CLI", "/stack:67108864");
25 ADD_FLAG("LDFLAGS_CLI_WIN32", "/stack:67108864");
/PHP-7.2/sapi/fpm/
H A Dwww.conf.in331 ; Depth of slow log stack trace.
/PHP-7.2/sapi/phpdbg/
H A DChangelog.md35 - frame (switch to a frame in the current stack for inspection)
H A Dconfig.w3222 ADD_FLAG("LDFLAGS_PHPDBG", "/stack:8388608");
H A Dphpdbg.h142 int phpdbg_do_parse(phpdbg_param_t *stack, char *input);
H A Dphpdbg_cmd.c376 if (stack && stack->next) { in phpdbg_stack_free()
430 stack->next = NULL; in phpdbg_stack_free()
446 stack->top = next; in phpdbg_stack_push()
448 stack->next = next; in phpdbg_stack_push()
451 next->top = stack->top; in phpdbg_stack_push()
452 stack->top = next; in phpdbg_stack_push()
455 stack->len++; in phpdbg_stack_push()
464 param->next = stack; in phpdbg_stack_separate()
465 stack->top = param->top; in phpdbg_stack_separate()
471 const phpdbg_param_t *top = (stack != NULL) ? *stack : NULL; in phpdbg_stack_verify()
[all …]
H A Dphpdbg_cmd.h141 PHPDBG_API void phpdbg_stack_push(phpdbg_param_t *stack, phpdbg_param_t *param);
144 PHPDBG_API int phpdbg_stack_verify(const phpdbg_command_t *command, phpdbg_param_t **stack);
145 PHPDBG_API int phpdbg_stack_execute(phpdbg_param_t *stack, zend_bool allow_async_unsafe);
146 PHPDBG_API void phpdbg_stack_free(phpdbg_param_t *stack);
H A Dphpdbg_lexer.c33 void phpdbg_init_lexer (phpdbg_param_t *stack, char *input) { in ZEND_EXTERN_MODULE_GLOBALS()
34 PHPDBG_G(parser_stack) = stack; in ZEND_EXTERN_MODULE_GLOBALS()
H A Dphpdbg_lexer.h38 void phpdbg_init_lexer (phpdbg_param_t *stack, char *input);
H A Dphpdbg_lexer.l31 void phpdbg_init_lexer (phpdbg_param_t *stack, char *input) { in ZEND_EXTERN_MODULE_GLOBALS()
32 PHPDBG_G(parser_stack) = stack; in ZEND_EXTERN_MODULE_GLOBALS()
H A Dphpdbg_parser.c1942 int phpdbg_do_parse(phpdbg_param_t *stack, char *input) { in phpdbg_do_parse() argument
1952 phpdbg_init_lexer(stack, input); in phpdbg_do_parse()
H A Dphpdbg_parser.y192 int phpdbg_do_parse(phpdbg_param_t *stack, char *input) { in phpdbg_do_parse() argument
202 phpdbg_init_lexer(stack, input); in phpdbg_do_parse()
H A Dphpdbg_print.c38 …PHPDBG_PRINT_COMMAND_D(stack, "print out the instructions in the current stack", 's'…
124 PHPDBG_PRINT(stack) /* {{{ */ in PHPDBG_PRINT() argument
H A Dphpdbg_print.h36 PHPDBG_PRINT(stack);
H A Dphpdbg_prompt.c105 if (stack->type == STACK_PARAM) { in phpdbg_call_register()
108 name = stack->next; in phpdbg_call_register()
264 phpdbg_param_t stack; in phpdbg_line_init() local
266 phpdbg_init_param(&stack, STACK_PARAM); in phpdbg_line_init()
270 if (phpdbg_do_parse(&stack, input) <= 0) { in phpdbg_line_init()
288 phpdbg_stack_free(&stack); in phpdbg_line_init()
1610 phpdbg_param_t stack; in phpdbg_interactive() local
1624 phpdbg_init_param(&stack, STACK_PARAM); in phpdbg_interactive()
1626 if (phpdbg_do_parse(&stack, input) <= 0) { in phpdbg_interactive()
1667 phpdbg_stack_free(&stack); in phpdbg_interactive()
[all …]
/PHP-7.2/sapi/phpdbg/tests/
H A Dexceptions_002.phpt29 prompt> [The stack contains nothing !]

Completed in 86 milliseconds

12345