Lines Matching refs:symbol_table

62 	HashTable *symbol_table = NULL;  in php_register_known_variable()  local
68 symbol_table = Z_ARRVAL_P(track_vars_array); in php_register_known_variable()
87 Z_ARRVAL(PG(http_globals)[TRACK_VARS_COOKIE]) != symbol_table); in php_register_known_variable()
90 php_register_variable_quick(var_name, var_name_len, value, symbol_table); in php_register_known_variable()
170 && ex->symbol_table == symtable1) { in php_register_variable_ex()
185 if (symtable1 == &EG(symbol_table) && in php_register_variable_ex()
703 zend_hash_update(&EG(symbol_table), ZSTR_KNOWN(ZEND_STR_ARGV), &arr); in php_build_argv()
704 zend_hash_update(&EG(symbol_table), ZSTR_KNOWN(ZEND_STR_ARGC), &argc); in php_build_argv()
759 int globals_check = (dest == (&EG(symbol_table))); in php_autoglobal_merge()
805 zend_hash_update(&EG(symbol_table), name, &PG(http_globals)[TRACK_VARS_GET]); in php_auto_globals_create_get()
824 zend_hash_update(&EG(symbol_table), name, &PG(http_globals)[TRACK_VARS_POST]); in php_auto_globals_create_post()
839 zend_hash_update(&EG(symbol_table), name, &PG(http_globals)[TRACK_VARS_COOKIE]); in php_auto_globals_create_cookie()
851 zend_hash_update(&EG(symbol_table), name, &PG(http_globals)[TRACK_VARS_FILES]); in php_auto_globals_create_files()
882 if ((argc = zend_hash_find_ex_ind(&EG(symbol_table), ZSTR_KNOWN(ZEND_STR_ARGC), 1)) != NULL && in php_auto_globals_create_server()
883 (argv = zend_hash_find_ex_ind(&EG(symbol_table), ZSTR_KNOWN(ZEND_STR_ARGV), 1)) != NULL) { in php_auto_globals_create_server()
899 zend_hash_update(&EG(symbol_table), name, &PG(http_globals)[TRACK_VARS_SERVER]); in php_auto_globals_create_server()
920 zend_hash_update(&EG(symbol_table), name, &PG(http_globals)[TRACK_VARS_ENV]); in php_auto_globals_create_env()
966 zend_hash_update(&EG(symbol_table), name, &form_variables); in php_auto_globals_create_request()