Lines Matching refs:request_info
217 if (SG(request_info).argv0) { in PHP_MSHUTDOWN_FUNCTION()
218 free(SG(request_info).argv0); in PHP_MSHUTDOWN_FUNCTION()
219 SG(request_info).argv0 = NULL; in PHP_MSHUTDOWN_FUNCTION()
1449 SG(request_info).argc = argc - php_optind + 1; in main()
1450 SG(request_info).argv = emalloc(SG(request_info).argc * sizeof(char *)); in main()
1451 for (i = SG(request_info).argc; --i;) { in main()
1452 SG(request_info).argv[i] = estrdup(argv[php_optind - 1 + i]); in main()
1454 SG(request_info).argv[0] = PHPDBG_G(exec) ? estrdup(PHPDBG_G(exec)) : estrdup(""); in main()
1651 for (i = SG(request_info).argc; i--;) { in main()
1652 efree(SG(request_info).argv[i]); in main()
1654 efree(SG(request_info).argv); in main()