Lines Matching refs:http_globals
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()
639 } else if (PG(http_globals)[TRACK_VARS_SERVER] && in cgi_php_import_environment_variables()
640 array_ptr != PG(http_globals)[TRACK_VARS_SERVER] && in cgi_php_import_environment_variables()
641 Z_TYPE_P(PG(http_globals)[TRACK_VARS_SERVER]) == IS_ARRAY && in cgi_php_import_environment_variables()
642 zend_hash_num_elements(Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_SERVER])) > 0 in cgi_php_import_environment_variables()
645 *array_ptr = *PG(http_globals)[TRACK_VARS_SERVER]; in cgi_php_import_environment_variables()