Home
last modified time | relevance | path

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

1234

/PHP-7.4/
H A Dphp.ini-production288 ; structures. Setting the depth limit too high may result in stack overflows
364 ; Allows to include or exclude arguments from stack traces generated for exceptions.
366 ; of sensitive information in stack traces
1037 ; the available process stack and eventually crash PHP (due to reaching the
1038 ; stack size limit imposed by the Operating System).
1687 ; This directive specifies maximum stack depth for mbstring regular expressions. It is similar
/PHP-7.4/sapi/cgi/
H A Dconfig.w326 ADD_FLAG("LDFLAGS_CGI", "/stack:67108864");
/PHP-7.4/sapi/cgi/tests/
H A Dapache_request_headers.phpt2 apache_request_headers() stack overflow.
/PHP-7.4/sapi/cli/
H A Dconfig.w3214 ADD_FLAG("LDFLAGS_CLI", "/stack:67108864");
24 ADD_FLAG("LDFLAGS_CLI_WIN32", "/stack:67108864");
/PHP-7.4/sapi/fpm/
H A Dwww.conf.in332 ; Depth of slow log stack trace.
/PHP-7.4/sapi/phpdbg/
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.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.y187 int phpdbg_do_parse(phpdbg_param_t *stack, char *input) { in phpdbg_do_parse() argument
197 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()
1564 phpdbg_param_t stack; in phpdbg_interactive() local
1578 phpdbg_init_param(&stack, STACK_PARAM); in phpdbg_interactive()
1592 phpdbg_stack_free(&stack); in phpdbg_interactive()
1628 phpdbg_stack_free(&stack); in phpdbg_interactive()
[all …]
H A Dxml.md346 - 2: enter stack frame
347 - 3: leave stack frame
/PHP-7.4/sapi/phpdbg/tests/
H A Dexceptions_002.phpt29 prompt> [The stack contains nothing !]
/PHP-7.4/tests/func/
H A D010.phpt10 // the stack size + some random constant
/PHP-7.4/tests/lang/
H A D012.phpt2 Testing stack after early function return
H A Dengine_assignExecutionOrder_008.phpt2 Ensure by value assignments leave temporaries on the stack, for all sorts of assignees.
H A DpassByReference_012.phpt8 $stack = array ( array ( 'two' ));
9 var_dump(array_shift(array_shift($stack)));
13 $stack = $original;
14 var_dump(array_shift(array_shift($stack)));

Completed in 42 milliseconds

1234