Home
last modified time | relevance | path

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

123

/PHP-7.4/sapi/phpdbg/
H A DMakefile.frag1 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) sapi/phpdbg/phpdbg.1 $(INSTALL_ROOT)$(mandir)/man1/$(program_prefix)phpdbg$(progr…
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 Dconfig.m41 PHP_ARG_ENABLE([phpdbg],
2 [for phpdbg support],
3 [AS_HELP_STRING([--enable-phpdbg],
4 [Build phpdbg])],
8 PHP_ARG_ENABLE([phpdbg-webhelper],
9 [for phpdbg web SAPI support],
14 PHP_ARG_ENABLE([phpdbg-debug],
15 [for phpdbg debug build],
58 …D_MAKEFILE_FRAGMENT([$abs_srcdir/sapi/phpdbg/Makefile.frag], [$abs_srcdir/sapi/phpdbg], [$abs_buil…
61 BUILD_BINARY="sapi/phpdbg/phpdbg"
[all …]
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 Dconfig.w321 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';
19 SAPI('phpdbg', PHPDBG_SOURCES, PHPDBG_EXE, PHPDBG_CFLAGS);
H A DREADME.md3 Implemented as a SAPI module, phpdbg can exert complete control over the
6 phpdbg aims to be a lightweight, powerful, easy to use debugging platform for
29 To install **phpdbg**, you must compile the source against your PHP installation
38 ./sapi/phpdbg/phpdbg --version
45 **Note:** PHP must be configured with the switch `--with-readline` for phpdbg to
57 The following switches change the default behaviour of phpdbg:
73 **Note:** Passing `-rr` will cause phpdbg to quit after execution, rather than
78 See the [website](https://phpdbg.room11.org) for tutorials/documentation.
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.php29 $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 DCREDITS1 phpdbg
H A Dphpdbg_break.c29 ZEND_EXTERN_MODULE_GLOBALS(phpdbg)
H A Dphpdbg.c60 ZEND_DECLARE_MODULE_GLOBALS(phpdbg);
785 PHP_MINIT(phpdbg),
786 PHP_MSHUTDOWN(phpdbg),
787 PHP_RINIT(phpdbg),
788 PHP_RSHUTDOWN(phpdbg),
1613 phpdbg->name = sapi_name; in main()
1617 phpdbg->phpinfo_as_text = 1; in main()
1618 phpdbg->php_ini_ignore_cwd = 1; in main()
1620 sapi_startup(phpdbg); in main()
1623 phpdbg->phpinfo_as_text = 1; in main()
[all …]
H A Dphpdbg_sigio_win32.c26 ZEND_EXTERN_MODULE_GLOBALS(phpdbg) in ZEND_EXTERN_MODULE_GLOBALS() argument
H A Dphpdbg_sigsafe.c4 ZEND_EXTERN_MODULE_GLOBALS(phpdbg) in ZEND_EXTERN_MODULE_GLOBALS() argument
H A Dphpdbg.h241 ZEND_BEGIN_MODULE_GLOBALS(phpdbg)
332 ZEND_END_MODULE_GLOBALS(phpdbg) /* }}} */
H A Dphpdbg_lexer.l29 ZEND_EXTERN_MODULE_GLOBALS(phpdbg) in ZEND_EXTERN_MODULE_GLOBALS() argument
/PHP-7.4/sapi/phpdbg/tests/
H A Dbug73615.phpt2 Bug #73615 (phpdbg without option never load .phpdbginit at startup)
10 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE');
14 print `$phpdbg -qn`;
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 Dbug73927.phpt2 Bug #73927 (phpdbg fails with windows error prompt at "watch array")
/PHP-7.4/scripts/dev/
H A Dgenfiles113 $MAKE RE2C="$RE2C" RE2C_FLAGS="$RE2C_FLAGS" YACC="$YACC" srcdir=sapi/phpdbg builddir=sapi/phpdbg to…
114 -f sapi/phpdbg/Makefile.frag \
115 sapi/phpdbg/phpdbg_parser.c \
116 sapi/phpdbg/phpdbg_lexer.c
/PHP-7.4/win32/build/
H A DMakefile66 sapi\phpdbg\phpdbg_parser.c \
72 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) --output=sapi/phpdbg/phpdbg_parser.c -v -d -p phpdbg_ sapi/phpdbg/phpdbg_parser.y
98 sapi\phpdbg\phpdbg_lexer.c: sapi\phpdbg\phpdbg_lexer.l
99 …$(RE2C) $(RE2C_FLAGS) --no-generation-date -cbdFo sapi/phpdbg/phpdbg_lexer.c sapi/phpdbg/phpdbg_le…
/PHP-7.4/
H A D.gitignore113 /sapi/phpdbg/phpdbg.1
135 /sapi/phpdbg/phpdbg
149 /sapi/phpdbg/phpdbg_lexer.c
160 /sapi/phpdbg/phpdbg_parser.c
161 /sapi/phpdbg/phpdbg_parser.h
162 /sapi/phpdbg/phpdbg_parser.output
H A Drun-tests.php146 $phpdbg = null;
189 $phpdbg = null;
191 if ($phpdbg) {
192 putenv("TEST_PHPDBG_EXECUTABLE=$phpdbg");
197 $phpdbg = getenv('TEST_PHPDBG_EXECUTABLE');
199 if ($phpdbg == 'auto') {
201 putenv("TEST_PHPDBG_EXECUTABLE=$phpdbg");
862 if ($phpdbg) {
1775 $phpdbg = $env['TEST_PHPDBG_EXECUTABLE'];
1964 if (isset($phpdbg)) {
[all …]
/PHP-7.4/ext/opcache/tests/
H A Dphi_use_chain.phpt8 …if (\in_array('cli-server', ['cli', 'phpdbg'], true) && $adapter instanceof stdClass && !\filter_v…

Completed in 42 milliseconds

123