Searched refs:PHPDBG_ASYNC_SAFE (Results 1 – 7 of 7) sorted by relevance
/PHP-8.0/sapi/phpdbg/ |
H A D | phpdbg_set.c | 33 … "usage: set pagination [<on|off>]", 'P', set_pagination, NULL, "|b", PHPDBG_ASYNC_SAFE), 35 … "usage: set color <element> <color>", 'c', set_color, NULL, "ss", PHPDBG_ASYNC_SAFE), 36 … "usage: set colors [<on|off>]", 'C', set_colors, NULL, "|b", PHPDBG_ASYNC_SAFE), 39 … "usage: set break id [<on|off>]", 'b', set_break, NULL, "l|b", PHPDBG_ASYNC_SAFE), 40 … "usage: set breaks [<on|off>]", 'B', set_breaks, NULL, "|b", PHPDBG_ASYNC_SAFE), 41 … "usage: set quiet [<on|off>]", 'q', set_quiet, NULL, "|b", PHPDBG_ASYNC_SAFE), 42 … "usage: set stepping [<line|op>]", 's', set_stepping, NULL, "|s", PHPDBG_ASYNC_SAFE), 43 … "usage: set refcount [<on|off>]", 'r', set_refcount, NULL, "|b", PHPDBG_ASYNC_SAFE), 44 … "usage: set lines [<number>]", 'l', set_lines, NULL, "|l", PHPDBG_ASYNC_SAFE),
|
H A D | phpdbg_info.c | 32 …AND_D(break, "show breakpoints", 'b', info_break, NULL, 0, PHPDBG_ASYNC_SAFE), 33 …AND_D(files, "show included files", 'F', info_files, NULL, 0, PHPDBG_ASYNC_SAFE), 34 …AND_D(classes, "show loaded classes", 'c', info_classes, NULL, 0, PHPDBG_ASYNC_SAFE), 35 …AND_D(funcs, "show loaded classes", 'f', info_funcs, NULL, 0, PHPDBG_ASYNC_SAFE), 36 …AND_D(error, "show last error", 'e', info_error, NULL, 0, PHPDBG_ASYNC_SAFE), 37 …AND_D(constants, "show user defined constants", 'd', info_constants, NULL, 0, PHPDBG_ASYNC_SAFE), 38 …AND_D(vars, "show active variables", 'v', info_vars, NULL, 0, PHPDBG_ASYNC_SAFE), 39 …AND_D(globals, "show superglobals", 'g', info_globals, NULL, 0, PHPDBG_ASYNC_SAFE), 40 …AND_D(literal, "show active literal constants", 'l', info_literal, NULL, 0, PHPDBG_ASYNC_SAFE), 41 …AND_D(memory, "show memory manager stats", 'm', info_memory, NULL, 0, PHPDBG_ASYNC_SAFE),
|
H A D | phpdbg_print.c | 31 …ut the instructions in the main execution context", 'e', print_exec, NULL, 0, PHPDBG_ASYNC_SAFE), 32 …ut the instruction in the current opline", 'o', print_opline, NULL, 0, PHPDBG_ASYNC_SAFE), 33 … the instructions in the specified class", 'c', print_class, NULL, "s", PHPDBG_ASYNC_SAFE), 34 … the instructions in the specified method", 'm', print_method, NULL, "m", PHPDBG_ASYNC_SAFE), 35 … the instructions in the specified function", 'f', print_func, NULL, "s", PHPDBG_ASYNC_SAFE), 36 …ut the instructions in the current stack", 's', print_stack, NULL, 0, PHPDBG_ASYNC_SAFE),
|
H A D | phpdbg_list.c | 40 …MMAND_D(lines, "lists the specified lines", 'l', list_lines, NULL, "l", PHPDBG_ASYNC_SAFE), 41 …MMAND_D(class, "lists the specified class", 'c', list_class, NULL, "s", PHPDBG_ASYNC_SAFE), 42 …MMAND_D(method, "lists the specified method", 'm', list_method, NULL, "m", PHPDBG_ASYNC_SAFE), 43 …MMAND_D(func, "lists the specified function", 'f', list_func, NULL, "s", PHPDBG_ASYNC_SAFE),
|
H A D | phpdbg_prompt.c | 69 …_COMMAND_D(step, "step through execution", 's', NULL, 0, PHPDBG_ASYNC_SAFE), 70 …_COMMAND_D(continue, "continue execution", 'c', NULL, 0, PHPDBG_ASYNC_SAFE), 79 …MMAND_D(back, "show trace", 't', NULL, "|n", PHPDBG_ASYNC_SAFE), 80 …MMAND_D(frame, "switch to a frame", 'f', NULL, "|n", PHPDBG_ASYNC_SAFE), 81 … "lists some code", 'l', phpdbg_list_commands, "*", PHPDBG_ASYNC_SAFE), 82 … "displays some information", 'i', phpdbg_info_commands, "|s", PHPDBG_ASYNC_SAFE), 85 … "show help menu", 'h', phpdbg_help_commands, "|s", PHPDBG_ASYNC_SAFE), 86 … "set phpdbg configuration", 'S', phpdbg_set_commands, "s", PHPDBG_ASYNC_SAFE), 89 …OMMAND_D(export, "export breaks to a .phpdbginit script", '>', NULL, "s", PHPDBG_ASYNC_SAFE), 91 …_COMMAND_D(quit, "exit phpdbg", 'q', NULL, 0, PHPDBG_ASYNC_SAFE), [all …]
|
H A D | phpdbg_cmd.h | 84 #define PHPDBG_ASYNC_SAFE 1 macro
|
H A D | phpdbg_cmd.c | 693 if (!allow_async_unsafe && !(handler->flags & PHPDBG_ASYNC_SAFE)) { in phpdbg_internal_stack_execute()
|
Completed in 20 milliseconds