Lines Matching refs:phpdbg
48 ZEND_DECLARE_MODULE_GLOBALS(phpdbg);
81 static PHP_MINIT_FUNCTION(phpdbg) /* {{{ */ in PHP_MINIT_FUNCTION() argument
83 ZEND_INIT_MODULE_GLOBALS(phpdbg, php_phpdbg_globals_ctor, NULL); in PHP_MINIT_FUNCTION()
153 static PHP_RINIT_FUNCTION(phpdbg) /* {{{ */ in PHP_RINIT_FUNCTION() argument
172 static PHP_RSHUTDOWN_FUNCTION(phpdbg) /* {{{ */ in PHP_RSHUTDOWN_FUNCTION() argument
428 PHP_MINIT(phpdbg),
430 PHP_RINIT(phpdbg),
431 PHP_RSHUTDOWN(phpdbg),
960 sapi_module_struct *phpdbg = &phpdbg_sapi_module; local
1203 sapi_startup(phpdbg);
1204 phpdbg->startup(phpdbg);
1247 phpdbg->name = sapi_name;
1250 phpdbg->ini_defaults = phpdbg_ini_defaults;
1251 phpdbg->phpinfo_as_text = 1;
1252 phpdbg->php_ini_ignore_cwd = 1;
1254 sapi_startup(phpdbg);
1256 phpdbg->executable_location = argv[0];
1257 phpdbg->phpinfo_as_text = 1;
1258 phpdbg->php_ini_ignore = ini_ignore;
1259 phpdbg->php_ini_path_override = ini_override;
1293 phpdbg->ini_entries = ini_entries;
1295 if (phpdbg->startup(phpdbg) == SUCCESS) {