Lines Matching refs:PHPDBG_COMMAND_D

43 	PHPDBG_COMMAND_D(exec,    "set execution context",                    'e', NULL, "s"),
44 PHPDBG_COMMAND_D(step, "step through execution", 's', NULL, 0),
45 PHPDBG_COMMAND_D(continue,"continue execution", 'c', NULL, 0),
46 PHPDBG_COMMAND_D(run, "attempt execution", 'r', NULL, "|s"),
47 PHPDBG_COMMAND_D(ev, "evaluate some code", 0, NULL, "i"),
48 PHPDBG_COMMAND_D(until, "continue past the current line", 'u', NULL, 0),
49 PHPDBG_COMMAND_D(finish, "continue past the end of the stack", 'F', NULL, 0),
50 PHPDBG_COMMAND_D(leave, "continue until the end of the stack", 'L', NULL, 0),
51PHPDBG_COMMAND_D(print, "print something", 'p', phpdbg_print_commands, …
52PHPDBG_COMMAND_D(break, "set breakpoint", 'b', phpdbg_break_commands, …
53 PHPDBG_COMMAND_D(back, "show trace", 't', NULL, "|n"),
54 PHPDBG_COMMAND_D(frame, "switch to a frame", 'f', NULL, "|n"),
55PHPDBG_COMMAND_D(list, "lists some code", 'l', phpdbg_list_commands, "…
56PHPDBG_COMMAND_D(info, "displays some informations", 'i', phpdbg_info_commands, "…
57 PHPDBG_COMMAND_D(clean, "clean the execution environment", 'X', NULL, 0),
58 PHPDBG_COMMAND_D(clear, "clear breakpoints", 'C', NULL, 0),
59PHPDBG_COMMAND_D(help, "show help menu", 'h', phpdbg_help_commands, "…
60PHPDBG_COMMAND_D(set, "set phpdbg configuration", 'S', phpdbg_set_commands, …
61 PHPDBG_COMMAND_D(register,"register a function", 'R', NULL, "s"),
62 PHPDBG_COMMAND_D(source, "execute a phpdbginit", '<', NULL, "s"),
63 PHPDBG_COMMAND_D(export, "export breaks to a .phpdbginit script", '>', NULL, "s"),
64 PHPDBG_COMMAND_D(sh, "shell a command", 0, NULL, "i"),
65 PHPDBG_COMMAND_D(quit, "exit phpdbg", 'q', NULL, 0),
66PHPDBG_COMMAND_D(watch, "set watchpoint", 'w', phpdbg_watch_commands, …