Home
last modified time | relevance | path

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

12

/PHP-7.0/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) $(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 Dconfig.m45 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 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';
15 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.travis.yml11 - ./php-src/sapi/cli/php php-src/sapi/phpdbg/tests/run-tests.php -diff2stdout --phpdbg php-src/sapi…
H A DREADME.md4 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.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 D.gitignore2 phpdbg
H A DCREDITS1 phpdbg
H A Dphpdbg_break.c29 ZEND_EXTERN_MODULE_GLOBALS(phpdbg)
H A Dphpdbg.c64 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 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.h236 ZEND_BEGIN_MODULE_GLOBALS(phpdbg)
324 ZEND_END_MODULE_GLOBALS(phpdbg) /* }}} */
H A Dphpdbg_lexer.l29 ZEND_EXTERN_MODULE_GLOBALS(phpdbg) in ZEND_EXTERN_MODULE_GLOBALS() argument
/PHP-7.0/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)
/PHP-7.0/sapi/phpdbg/travis/
H A Dci.sh6 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 DMakefile47 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 Drun-tests.php144 $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.gitignore274 sapi/phpdbg/phpdbg_parser.c
275 sapi/phpdbg/phpdbg_parser.h
276 sapi/phpdbg/phpdbg

Completed in 40 milliseconds

12