Home
last modified time | relevance | path

Searched refs:phpdbg (Results 1 – 25 of 55) sorted by relevance

123

/php-src/sapi/phpdbg/
H A Dconfig.m41 PHP_ARG_ENABLE([phpdbg],
2 [for phpdbg support],
3 [AS_HELP_STRING([--disable-phpdbg],
4 [Disable building of phpdbg])],
8 PHP_ARG_ENABLE([phpdbg-debug],
9 [for phpdbg debug build],
67 [sapi/phpdbg])
68 PHP_SELECT_SAPI([phpdbg],
89 phpdbg.c
93 SAPI_PHPDBG_PATH="sapi/phpdbg/phpdbg"
[all …]
H A DMakefile.frag1 phpdbg: $(SAPI_PHPDBG_PATH)
3 phpdbg-shared: $(SAPI_PHPDBG_SHARED_PATH)
17 …@(cd $(top_srcdir); $(RE2C) $(RE2C_FLAGS) -cbdFo sapi/phpdbg/phpdbg_lexer.c sapi/phpdbg/phpdbg_lex…
23 install-phpdbg: $(SAPI_PHPDBG_PATH)
28 …@$(INSTALL) -m 0755 $(SAPI_PHPDBG_PATH) $(INSTALL_ROOT)$(bindir)/$(program_prefix)phpdbg$(program_…
31 …@$(INSTALL_DATA) sapi/phpdbg/phpdbg.1 $(INSTALL_ROOT)$(mandir)/man1/$(program_prefix)phpdbg$(progr…
H A Dconfig.w321 ARG_ENABLE('phpdbg', 'Build phpdbg', 'no');
2 ARG_ENABLE('phpdbgs', 'Build phpdbg shared', 'no');
3 ARG_ENABLE('phpdbg-debug', 'Build phpdbg in debug mode to enable additional \
4 diagnostic output for developing and troubleshooting phpdbg itself', 'no');
6 PHPDBG_SOURCES='phpdbg.c phpdbg_prompt.c phpdbg_cmd.c phpdbg_info.c phpdbg_help.c phpdbg_break.c ' +
10 PHPDBG_DLL='php' + PHP_VERSION + 'phpdbg.dll';
11 PHPDBG_EXE='phpdbg.exe';
18 SAPI('phpdbg', PHPDBG_SOURCES, PHPDBG_EXE, PHPDBG_CFLAGS);
H A Dphpdbg.init.d2 # File: /etc/init.d/phpdbg #
4 # Purpose: Daemonize phpdbg automatically on boot #
6 # description: Starts, stops and restarts phpdbg daemon #
8 LOCKFILE=/var/lock/subsys/phpdbg
9 PIDFILE=/var/run/phpdbg.pid
13 # Either set path to phpdbg here or rely on phpdbg in ENV/PATH #
16 PHPDBG=$(which phpdbg 2>/dev/null)
19 # Options to pass to phpdbg upon boot #
22 LOGFILE=/var/log/phpdbg.log
32 PHPDBG=$(which phpdbg 2>>/dev/null)
H A D.gdbinit6 set $phpdbg = ((zend_phpdbg_globals*) (*((void ***) $tsrm_ls))[phpdbg_globals_id-1])
8 set $phpdbg = phpdbg_globals
H A D.phpdbginit9 # exec sapi/phpdbg/test.php
34 /* phpdbg_break(PHPDBG_METHOD, "phpdbg::method"); */
72 array("phpdbg"),
81 # Now carry on initializing phpdbg ...
100 # and register a new implementation for phpdbg)
H A Dtest.php8 class phpdbg { class
35 $dbg = new phpdbg();
H A Dcreate-test.php27 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE') ?: null; variable
38 $phpdbg = $argv[++$i]; variable
61 $proc = proc_open("$phpdbg $pass_options $file -- $cmdargv", [["pipe", "r"], ["pipe", "w"], ["pipe"…
H A DCREDITS1 phpdbg
H A Dphpdbg.c45 ZEND_DECLARE_MODULE_GLOBALS(phpdbg)
695 PHP_MINIT(phpdbg),
696 PHP_MSHUTDOWN(phpdbg),
697 PHP_RINIT(phpdbg),
698 PHP_RSHUTDOWN(phpdbg),
1302 phpdbg->name = sapi_name; in main()
1305 phpdbg->ini_defaults = NULL; in main()
1306 phpdbg->phpinfo_as_text = 1; in main()
1309 sapi_startup(phpdbg); in main()
1312 phpdbg->phpinfo_as_text = 1; in main()
[all …]
H A Dphpdbg_break.c26 ZEND_EXTERN_MODULE_GLOBALS(phpdbg)
/php-src/sapi/phpdbg/tests/
H A Dbug73615.phpt2 Bug #73615 (phpdbg without option never load .phpdbginit at startup)
10 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE_ESCAPED');
14 print `$phpdbg -qn`;
H A Dgh10715.phpt2 GH-10715 (phpdbg heap buffer overflow -- by misuse of the option "--run")
H A Dgh16174.phpt2 GH-16174 (Empty string is an invalid expression for phpdbg-ev)
H A Dgh15901.phpt2 GH-15901 (phpdbg: Assertion failure on `i funcs`)
H A Dset_exception_handler.phpt2 set_exception_handler() in phpdbg
H A Dbug73704.phpt2 Bug #73704 (phpdbg shows the wrong line in files with shebang)
H A Dgh16181.phpt2 GH-16181 (phpdbg: exit in exception handler reports fatal error)
H A Dgh15268.phpt2 GH-15268 (heap buffer overflow in phpdbg (zend_hash_num_elements() Zend/zend_hash.h))
/php-src/scripts/dev/
H A Dgenfiles112 …_FLAGS="$RE2C_FLAGS" YACC="$YACC" YFLAGS="$YFLAGS" srcdir=sapi/phpdbg builddir=sapi/phpdbg top_src…
113 -f sapi/phpdbg/Makefile.frag \
114 sapi/phpdbg/phpdbg_parser.c \
115 sapi/phpdbg/phpdbg_lexer.c
/php-src/
H A Drun-tests.php661 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE') ?: get_binary($php, 'phpdbg', 'sapi/phpdbg/phpdbg');
671 putenv("TEST_PHPDBG_EXECUTABLE=$phpdbg");
672 $environment['TEST_PHPDBG_EXECUTABLE'] = $phpdbg;
673 putenv("TEST_PHPDBG_EXECUTABLE_ESCAPED=" . escapeshellarg($phpdbg ?? ''));
674 $environment['TEST_PHPDBG_EXECUTABLE_ESCAPED'] = escapeshellarg($phpdbg ?? '');
691 write_information($user_tests, $phpdbg);
800 function write_information(array $user_tests, $phpdbg): void argument
831 if ($phpdbg) {
832 $phpdbg_escaped = escapeshellarg($phpdbg);
835 $phpdbg_info = "$php_info_sep\nPHP : $phpdbg $phpdbg_info$php_info_sep";
H A D.gitignore108 /sapi/phpdbg/phpdbg.1
130 /sapi/phpdbg/phpdbg
144 /sapi/phpdbg/phpdbg_lexer.c
155 /sapi/phpdbg/phpdbg_parser.c
156 /sapi/phpdbg/phpdbg_parser.h
157 /sapi/phpdbg/phpdbg_parser.output
/php-src/win32/build/
H A DMakefile65 sapi\phpdbg\phpdbg_parser.c \
73 sapi\phpdbg\phpdbg_parser.c sapi\phpdbg\phpdbg_lexer.c \
88 sapi\phpdbg\phpdbg_parser.c sapi\phpdbg\phpdbg_parser.h: sapi\phpdbg\phpdbg_parser.y
89 $(BISON) $(BISON_FLAGS) --output=sapi/phpdbg/phpdbg_parser.c -v -d sapi/phpdbg/phpdbg_parser.y
98 sapi\phpdbg\phpdbg_lexer.c: sapi\phpdbg\phpdbg_lexer.l
99 $(RE2C) $(RE2C_FLAGS) -cbdFo sapi/phpdbg/phpdbg_lexer.c sapi/phpdbg/phpdbg_lexer.l
/php-src/ext/opcache/tests/
H A Dphi_use_chain.phpt10 …if (\in_array('cli-server', ['cli', 'phpdbg'], true) && $adapter instanceof stdClass && !\filter_v…
/php-src/Zend/tests/stack_limit/
H A Dgh16041_002.phpt2 GH-16041 002: Stack overflow in phpdbg

Completed in 47 milliseconds

123