Lines Matching refs:request_info
286 if (SG(request_info).argv0) { in PHP_MSHUTDOWN_FUNCTION()
287 free(SG(request_info).argv0); in PHP_MSHUTDOWN_FUNCTION()
288 SG(request_info).argv0 = NULL; in PHP_MSHUTDOWN_FUNCTION()
1798 SG(request_info).argc = argc - php_optind + 1; in main()
1799 SG(request_info).argv = emalloc(SG(request_info).argc * sizeof(char *)); in main()
1800 for (i = SG(request_info).argc; --i;) { in main()
1801 SG(request_info).argv[i] = estrdup(argv[php_optind - 1 + i]); in main()
1803 SG(request_info).argv[0] = PHPDBG_G(exec) ? estrdup(PHPDBG_G(exec)) : estrdup(""); in main()
2072 for (i = SG(request_info).argc; i--;) { in main()
2073 efree(SG(request_info).argv[i]); in main()
2075 efree(SG(request_info).argv); in main()