Searched refs:TRACK_VARS_ENV (Results 1 – 6 of 6) sorted by relevance
45 #define TRACK_VARS_ENV 4 macro
786 if (PG(http_globals)[TRACK_VARS_ENV]) { in php_auto_globals_create_env()787 zval_ptr_dtor(&PG(http_globals)[TRACK_VARS_ENV]); in php_auto_globals_create_env()789 PG(http_globals)[TRACK_VARS_ENV] = env_vars; in php_auto_globals_create_env()792 php_import_environment_variables(PG(http_globals)[TRACK_VARS_ENV] TSRMLS_CC); in php_auto_globals_create_env()795 …zend_hash_update(&EG(symbol_table), name, name_len + 1, &PG(http_globals)[TRACK_VARS_ENV], sizeof(… in php_auto_globals_create_env()796 Z_ADDREF_P(PG(http_globals)[TRACK_VARS_ENV]); in php_auto_globals_create_env()
203 int filter_arg = (arg == PG(http_globals)[TRACK_VARS_ENV])?PARSE_ENV:PARSE_SERVER; in add_variable()241 if (PG(http_globals)[TRACK_VARS_ENV] && in litespeed_php_import_environment_variables()242 array_ptr != PG(http_globals)[TRACK_VARS_ENV] && in litespeed_php_import_environment_variables()243 Z_TYPE_P(PG(http_globals)[TRACK_VARS_ENV]) == IS_ARRAY && in litespeed_php_import_environment_variables()244 zend_hash_num_elements(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_ENV])) > 0 in litespeed_php_import_environment_variables()247 *array_ptr = *PG(http_globals)[TRACK_VARS_ENV]; in litespeed_php_import_environment_variables()
574 if (PG(http_globals)[TRACK_VARS_ENV] && in cgi_php_import_environment_variables()575 array_ptr != PG(http_globals)[TRACK_VARS_ENV] && in cgi_php_import_environment_variables()576 Z_TYPE_P(PG(http_globals)[TRACK_VARS_ENV]) == IS_ARRAY && in cgi_php_import_environment_variables()577 zend_hash_num_elements(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_ENV])) > 0 in cgi_php_import_environment_variables()580 *array_ptr = *PG(http_globals)[TRACK_VARS_ENV]; in cgi_php_import_environment_variables()600 filter_arg = (array_ptr == PG(http_globals)[TRACK_VARS_ENV])?PARSE_ENV:PARSE_SERVER; in cgi_php_import_environment_variables()
619 int filter_arg = (array_ptr == PG(http_globals)[TRACK_VARS_ENV])?PARSE_ENV:PARSE_SERVER; in cgi_php_load_env_var()629 if (PG(http_globals)[TRACK_VARS_ENV] && in cgi_php_import_environment_variables()630 array_ptr != PG(http_globals)[TRACK_VARS_ENV] && in cgi_php_import_environment_variables()631 Z_TYPE_P(PG(http_globals)[TRACK_VARS_ENV]) == IS_ARRAY && in cgi_php_import_environment_variables()632 zend_hash_num_elements(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_ENV])) > 0 in cgi_php_import_environment_variables()635 *array_ptr = *PG(http_globals)[TRACK_VARS_ENV]; in cgi_php_import_environment_variables()
431 PARSE_CASE(PARSE_ENV, env_array, TRACK_VARS_ENV) in php_sapi_filter()549 array_ptr = IF_G(env_array) ? IF_G(env_array) : PG(http_globals)[TRACK_VARS_ENV]; in php_filter_get_storage()
Completed in 37 milliseconds