/PHP-7.0/sapi/phpdbg/ |
H A D | Makefile.frag | 1 phpdbg: $(BUILD_BINARY) 3 phpdbg-shared: $(BUILD_SHARED) 17 …ir); $(RE2C) $(RE2C_FLAGS) --no-generation-date -cbdFo sapi/phpdbg/phpdbg_lexer.c sapi/phpdbg/phpd… 23 install-phpdbg: $(BUILD_BINARY) 28 …@$(INSTALL) -m 0755 $(BUILD_BINARY) $(INSTALL_ROOT)$(bindir)/$(program_prefix)phpdbg$(program_suff… 31 …@$(INSTALL_DATA) $(srcdir)/phpdbg.1 $(INSTALL_ROOT)$(mandir)/man1/$(program_prefix)phpdbg$(program… 33 clean-phpdbg: 35 find sapi/phpdbg/ -name *.lo -o -name *.o | xargs rm -f 37 test-phpdbg: 39 @$(top_builddir)/sapi/cli/php sapi/phpdbg/tests/run-tests.php --phpdbg sapi/phpdbg/phpdbg [all …]
|
H A D | config.m4 | 5 PHP_ARG_ENABLE(phpdbg, for phpdbg support, 6 [ --enable-phpdbg Build phpdbg], yes, yes) 8 PHP_ARG_ENABLE(phpdbg-webhelper, for phpdbg web SAPI support, 9 [ --enable-phpdbg-webhelper Build phpdbg web SAPI support], no) 11 PHP_ARG_ENABLE(phpdbg-debug, for phpdbg debug build, 12 [ --enable-phpdbg-debug Build phpdbg in debug mode], no, no) 25 …PHP_PHPDBG_FILES="phpdbg.c phpdbg_parser.c phpdbg_lexer.c phpdbg_prompt.c phpdbg_help.c phpdbg_bre… 35 …D_MAKEFILE_FRAGMENT([$abs_srcdir/sapi/phpdbg/Makefile.frag], [$abs_srcdir/sapi/phpdbg], [$abs_buil… 36 PHP_SELECT_SAPI(phpdbg, program, $PHP_PHPDBG_FILES, $PHP_PHPDBG_CFLAGS, [$(SAPI_PHPDBG_PATH)]) 38 BUILD_BINARY="sapi/phpdbg/phpdbg" [all …]
|
H A D | config.w32 | 1 ARG_ENABLE('phpdbg', 'Build phpdbg', 'no'); 2 ARG_ENABLE('phpdbgs', 'Build phpdbg shared', 'no'); 3 ARG_ENABLE('phpdbg-webhelper', 'Build phpdbg webhelper', 'yes'); 5 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'; 15 SAPI('phpdbg', PHPDBG_SOURCES, PHPDBG_EXE, PHPDBG_CFLAGS);
|
H A D | phpdbg.init.d | 2 # 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 | .travis.yml | 11 - ./php-src/sapi/cli/php php-src/sapi/phpdbg/tests/run-tests.php -diff2stdout --phpdbg php-src/sapi…
|
H A D | README.md | 4 Implemented as a SAPI module, phpdbg can exert complete control over the environment without impact… 6 phpdbg aims to be a lightweight, powerful, easy to use debugging platform for PHP 5.4+ 8 [![phpdbg on travis-ci](https://travis-ci.org/krakjoe/phpdbg.png?branch=master)](https://travis-ci.… 33 To install **phpdbg**, you must compile the source against your PHP installation sources, and enabl… 37 git clone https://github.com/krakjoe/phpdbg 40 ./configure --enable-phpdbg 42 make install-phpdbg 48 **Note:** PHP must be configured with the switch --with-readline for phpdbg to support history, aut… 60 The following switches change the default behaviour of phpdbg: 76 **Note:** Passing -rr will cause phpdbg to quit after execution, rather than returning to the conso… [all …]
|
H A D | .gdbinit | 6 set $phpdbg = ((zend_phpdbg_globals*) (*((void ***) $tsrm_ls))[phpdbg_globals_id-1]) 8 set $phpdbg = phpdbg_globals
|
H A D | .phpdbginit | 9 # 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 D | test.php | 8 class phpdbg { class 35 $dbg = new phpdbg();
|
H A D | create-test.php | 29 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE') ?: null; variable 40 $phpdbg = $argv[++$i]; variable 63 $proc = proc_open("$phpdbg $pass_options $file -- $cmdargv", [["pipe", "r"], ["pipe", "w"], ["pipe"…
|
H A D | .gitignore | 2 phpdbg
|
H A D | CREDITS | 1 phpdbg
|
H A D | phpdbg_break.c | 29 ZEND_EXTERN_MODULE_GLOBALS(phpdbg)
|
H A D | phpdbg.c | 64 ZEND_DECLARE_MODULE_GLOBALS(phpdbg); 778 PHP_MINIT(phpdbg), 780 PHP_RINIT(phpdbg), 781 PHP_RSHUTDOWN(phpdbg), 1591 phpdbg->name = sapi_name; in main() 1595 phpdbg->phpinfo_as_text = 1; in main() 1596 phpdbg->php_ini_ignore_cwd = 1; in main() 1598 sapi_startup(phpdbg); in main() 1601 phpdbg->phpinfo_as_text = 1; in main() 1637 phpdbg->ini_entries = ini_entries; in main() [all …]
|
H A D | phpdbg_sigio_win32.c | 26 ZEND_EXTERN_MODULE_GLOBALS(phpdbg) in ZEND_EXTERN_MODULE_GLOBALS() argument
|
H A D | phpdbg_sigsafe.c | 4 ZEND_EXTERN_MODULE_GLOBALS(phpdbg) in ZEND_EXTERN_MODULE_GLOBALS() argument
|
H A D | phpdbg.h | 236 ZEND_BEGIN_MODULE_GLOBALS(phpdbg) 324 ZEND_END_MODULE_GLOBALS(phpdbg) /* }}} */
|
H A D | phpdbg_lexer.l | 29 ZEND_EXTERN_MODULE_GLOBALS(phpdbg) in ZEND_EXTERN_MODULE_GLOBALS() argument
|
/PHP-7.0/sapi/phpdbg/tests/ |
H A D | bug73615.phpt | 2 Bug #73615 (phpdbg without option never load .phpdbginit at startup) 10 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE'); 14 print `$phpdbg -qn`;
|
H A D | set_exception_handler.phpt | 2 set_exception_handler() in phpdbg
|
H A D | bug73704.phpt | 2 Bug #73704 (phpdbg shows the wrong line in files with shebang)
|
/PHP-7.0/sapi/phpdbg/travis/ |
H A D | ci.sh | 6 rm -rf phpdbg 7 git clone https://github.com/krakjoe/phpdbg.git 10 ./configure --disable-all --enable-phpdbg --enable-maintainer-zts
|
/PHP-7.0/win32/build/ |
H A D | Makefile | 47 sapi\phpdbg\phpdbg_parser.c \ 53 sapi\phpdbg\phpdbg_parser.c sapi\phpdbg\phpdbg_lexer.c \ 69 sapi\phpdbg\phpdbg_parser.c sapi\phpdbg\phpdbg_parser.h: sapi\phpdbg\phpdbg_parser.y 70 $(BISON) --output=sapi/phpdbg/phpdbg_parser.c -v -d -p phpdbg_ sapi/phpdbg/phpdbg_parser.y 79 sapi\phpdbg\phpdbg_lexer.c: sapi\phpdbg\phpdbg_lexer.l 80 …$(RE2C) $(RE2C_FLAGS) --no-generation-date -cbdFo sapi/phpdbg/phpdbg_lexer.c sapi/phpdbg/phpdbg_le…
|
/PHP-7.0/ |
H A D | run-tests.php | 144 $phpdbg = null; variable 187 $phpdbg = null; variable 189 if ($phpdbg) { 190 putenv("TEST_PHPDBG_EXECUTABLE=$phpdbg"); 195 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE'); variable 197 if ($phpdbg=='auto') { 198 $phpdbg = $cwd . '/sapi/phpdbg/phpdbg'; variable 199 putenv("TEST_PHPDBG_EXECUTABLE=$phpdbg"); 306 if ($phpdbg) { 1422 if (isset($phpdbg)) { [all …]
|
H A D | .gitignore | 274 sapi/phpdbg/phpdbg_parser.c 275 sapi/phpdbg/phpdbg_parser.h 276 sapi/phpdbg/phpdbg
|