TRACK_VARS_SERVER  366 ext/filter/filter.c 		PARSE_CASE(PARSE_SERVER,  server_array,  TRACK_VARS_SERVER)
TRACK_VARS_SERVER 1291 ext/session/session.c 	if (!PS(use_only_cookies) && !PS(id) && PG(http_globals)[TRACK_VARS_SERVER] &&
TRACK_VARS_SERVER 1292 ext/session/session.c 			zend_hash_find(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER]), "REQUEST_URI",
TRACK_VARS_SERVER 1312 ext/session/session.c 			PG(http_globals)[TRACK_VARS_SERVER] &&
TRACK_VARS_SERVER 1313 ext/session/session.c 			zend_hash_find(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER]), "HTTP_REFERER",
TRACK_VARS_SERVER 2021 ext/soap/soap.c 	if (PG(http_globals)[TRACK_VARS_SERVER] &&
TRACK_VARS_SERVER 2022 ext/soap/soap.c 		zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "HTTP_USER_AGENT", sizeof("HTTP_USER_AGENT"), (void **) &agent_name) == SUCCESS &&
TRACK_VARS_SERVER 4571 ext/standard/basic_functions.c 	if ((zend_hash_find(HASH_OF(PG(http_globals)[TRACK_VARS_SERVER]), "argv", sizeof("argv"), (void **) &args) != FAILURE ||
TRACK_VARS_SERVER  303 ext/standard/browscap.c 		if (!PG(http_globals)[TRACK_VARS_SERVER]
TRACK_VARS_SERVER  304 ext/standard/browscap.c 			|| zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "HTTP_USER_AGENT", sizeof("HTTP_USER_AGENT"), (void **) &agent_name)==FAILURE) {
TRACK_VARS_SERVER  900 ext/zlib/zlib.c 	if (!PG(http_globals)[TRACK_VARS_SERVER]
TRACK_VARS_SERVER  901 ext/zlib/zlib.c 		|| zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "HTTP_ACCEPT_ENCODING", sizeof("HTTP_ACCEPT_ENCODING"), (void **) &a_encoding) == FAILURE
TRACK_VARS_SERVER  989 ext/zlib/zlib.c 	if (!PG(http_globals)[TRACK_VARS_SERVER]
TRACK_VARS_SERVER  990 ext/zlib/zlib.c 		|| zend_hash_find(PG(http_globals)[TRACK_VARS_SERVER]->value.ht, "HTTP_ACCEPT_ENCODING", sizeof("HTTP_ACCEPT_ENCODING"), (void **) &a_encoding) == FAILURE
TRACK_VARS_SERVER  562 main/php_variables.c 	if (PG(http_globals)[TRACK_VARS_SERVER]) {
TRACK_VARS_SERVER  563 main/php_variables.c 		zval_ptr_dtor(&PG(http_globals)[TRACK_VARS_SERVER]);
TRACK_VARS_SERVER  565 main/php_variables.c 	PG(http_globals)[TRACK_VARS_SERVER] = array_ptr;
TRACK_VARS_SERVER  718 main/php_variables.c 						php_autoglobal_merge(&EG(symbol_table), Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER]) TSRMLS_CC);
TRACK_VARS_SERVER  727 main/php_variables.c 		php_build_argv(SG(request_info).query_string, PG(http_globals)[TRACK_VARS_SERVER] TSRMLS_CC);
TRACK_VARS_SERVER  771 main/php_variables.c 					zend_hash_update(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER]), "argv", sizeof("argv"), argv, sizeof(zval *), NULL);
TRACK_VARS_SERVER  772 main/php_variables.c 					zend_hash_update(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER]), "argc", sizeof("argc"), argc, sizeof(zval *), NULL);
TRACK_VARS_SERVER  775 main/php_variables.c 				php_build_argv(SG(request_info).query_string, PG(http_globals)[TRACK_VARS_SERVER] TSRMLS_CC);
TRACK_VARS_SERVER  784 main/php_variables.c 		if (PG(http_globals)[TRACK_VARS_SERVER]) {
TRACK_VARS_SERVER  785 main/php_variables.c 			zval_ptr_dtor(&PG(http_globals)[TRACK_VARS_SERVER]);
TRACK_VARS_SERVER  787 main/php_variables.c 		PG(http_globals)[TRACK_VARS_SERVER] = server_vars;
TRACK_VARS_SERVER  790 main/php_variables.c 	zend_hash_update(&EG(symbol_table), name, name_len + 1, &PG(http_globals)[TRACK_VARS_SERVER], sizeof(zval *), NULL);
TRACK_VARS_SERVER  791 main/php_variables.c 	PG(http_globals)[TRACK_VARS_SERVER]->refcount++;
TRACK_VARS_SERVER  794 main/php_variables.c 		zend_hash_update(&EG(symbol_table), "HTTP_SERVER_VARS", sizeof("HTTP_SERVER_VARS"), &PG(http_globals)[TRACK_VARS_SERVER], sizeof(zval *), NULL);
TRACK_VARS_SERVER  795 main/php_variables.c 		PG(http_globals)[TRACK_VARS_SERVER]->refcount++;
TRACK_VARS_SERVER   86 sapi/apache_hooks/sapi_apache.c         php_register_variable_ex("request", req, PG(http_globals)[TRACK_VARS_SERVER] TSRMLS_CC);
TRACK_VARS_SERVER   90 sapi/apache_hooks/sapi_apache.c             php_register_variable("PHP_SELF_HOOK", handler->name, PG(http_globals)[TRACK_VARS_SERVER] TSRMLS_CC);
TRACK_VARS_SERVER  558 sapi/cgi/cgi_main.c 	} else if (PG(http_globals)[TRACK_VARS_SERVER] &&
TRACK_VARS_SERVER  559 sapi/cgi/cgi_main.c 		array_ptr != PG(http_globals)[TRACK_VARS_SERVER] &&
TRACK_VARS_SERVER  560 sapi/cgi/cgi_main.c 	    Z_TYPE_P(PG(http_globals)[TRACK_VARS_SERVER]) == IS_ARRAY &&
TRACK_VARS_SERVER  561 sapi/cgi/cgi_main.c 	    zend_hash_num_elements(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER])) > 0) {
TRACK_VARS_SERVER  563 sapi/cgi/cgi_main.c 	    *array_ptr = *PG(http_globals)[TRACK_VARS_SERVER];