Home
last modified time | relevance | path

Searched refs:symbol_table (Results 1 – 25 of 44) sorted by last modified time

12

/PHP-5.5/sapi/roxen/
H A Droxen.c520 zend_hash_update(&EG(symbol_table), name, sizeof(name), \
555 zend_hash_update(&EG(symbol_table), buf, buf_len + 1, &zvalue, sizeof(zval *), NULL); in php_roxen_hash_environment()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_php.c276 …if (zend_hash_find(&EG(symbol_table), table, strlen(table) + 1, (void **) &data) == SUCCESS && Z_T… in fpm_php_get_string_from_table()
/PHP-5.5/sapi/cli/
H A Dphp_cli.c1054 zend_hash_update(&EG(symbol_table), "argi", sizeof("argi"), &argi, sizeof(zval *), NULL); in do_cli()
1065 zend_hash_update(&EG(symbol_table), "argn", sizeof("argn"), &argn, sizeof(zval *), NULL); in do_cli()
/PHP-5.5/sapi/apache_hooks/
H A Dmod_php5.c390 HashTable *symbol_table; in sapi_apache_register_server_variables() local
405 symbol_table = track_vars_array->value.ht; in sapi_apache_register_server_variables()
407 symbol_table = NULL; in sapi_apache_register_server_variables()
409 if (symbol_table in sapi_apache_register_server_variables()
410 && !zend_hash_exists(symbol_table, "PATH_TRANSLATED", sizeof("PATH_TRANSLATED")) in sapi_apache_register_server_variables()
411 …&& zend_hash_find(symbol_table, "SCRIPT_FILENAME", sizeof("SCRIPT_FILENAME"), (void **) &path_tran… in sapi_apache_register_server_variables()
/PHP-5.5/sapi/apache/
H A Dmod_php5.c260 HashTable *symbol_table; in sapi_apache_register_server_variables() local
280 symbol_table = track_vars_array->value.ht; in sapi_apache_register_server_variables()
282 symbol_table = NULL; in sapi_apache_register_server_variables()
284 if (symbol_table in sapi_apache_register_server_variables()
285 && !zend_hash_exists(symbol_table, "PATH_TRANSLATED", sizeof("PATH_TRANSLATED")) in sapi_apache_register_server_variables()
286 …&& zend_hash_find(symbol_table, "SCRIPT_FILENAME", sizeof("SCRIPT_FILENAME"), (void **) &path_tran… in sapi_apache_register_server_variables()
/PHP-5.5/main/streams/
H A Duserspace.c308 fci.symbol_table = NULL; in user_stream_create_object()
/PHP-5.5/main/
H A Dphp_variables.c520 zend_hash_update(&EG(symbol_table), "argv", sizeof("argv"), &arr, sizeof(zval *), NULL); in php_build_argv()
521 zend_hash_update(&EG(symbol_table), "argc", sizeof("argc"), &argc, sizeof(zval *), NULL); in php_build_argv()
587 int globals_check = (dest == (&EG(symbol_table))); in php_autoglobal_merge()
650 zend_hash_update(&EG(symbol_table), name, name_len + 1, &vars, sizeof(zval *), NULL); in php_auto_globals_create_get()
677 zend_hash_update(&EG(symbol_table), name, name_len + 1, &vars, sizeof(zval *), NULL); in php_auto_globals_create_post()
700 zend_hash_update(&EG(symbol_table), name, name_len + 1, &vars, sizeof(zval *), NULL); in php_auto_globals_create_cookie()
719 zend_hash_update(&EG(symbol_table), name, name_len + 1, &vars, sizeof(zval *), NULL); in php_auto_globals_create_files()
751 if (zend_hash_find(&EG(symbol_table), "argc", sizeof("argc"), (void**)&argc) == SUCCESS && in php_auto_globals_create_server()
752 zend_hash_find(&EG(symbol_table), "argv", sizeof("argv"), (void**)&argv) == SUCCESS) { in php_auto_globals_create_server()
797 …zend_hash_update(&EG(symbol_table), name, name_len + 1, &PG(http_globals)[TRACK_VARS_ENV], sizeof(… in php_auto_globals_create_env()
[all …]
/PHP-5.5/ext/xsl/
H A Dxsltprocessor.c327 fci.symbol_table = NULL; in xsl_ext_function_php()
/PHP-5.5/ext/xml/
H A Dxml.c523 fci.symbol_table = NULL; in xml_call_handler()
/PHP-5.5/ext/standard/
H A Dinfo.c204 if (zend_hash_find(&EG(symbol_table), name, name_length+1, (void **) &data)!=FAILURE in php_print_gpcse_array()
1109 …if (zend_hash_find(&EG(symbol_table), "PHP_SELF", sizeof("PHP_SELF"), (void **) &data) != FAILURE … in php_print_info()
1112 …if (zend_hash_find(&EG(symbol_table), "PHP_AUTH_TYPE", sizeof("PHP_AUTH_TYPE"), (void **) &data) !… in php_print_info()
1115 …if (zend_hash_find(&EG(symbol_table), "PHP_AUTH_USER", sizeof("PHP_AUTH_USER"), (void **) &data) !… in php_print_info()
1118 …if (zend_hash_find(&EG(symbol_table), "PHP_AUTH_PW", sizeof("PHP_AUTH_PW"), (void **) &data) != FA… in php_print_info()
H A Dbasic_functions.c4271 …zend_hash_find(&EG(symbol_table), "argv", sizeof("argv"), (void **) &args) != FAILURE) && Z_TYPE_P…
H A Darray.c1962 if (key && Z_ARRVAL_P(stack) == &EG(symbol_table)) { in _phpi_pop()
2030 if (Z_ARRVAL_P(stack) == &EG(symbol_table)) { in PHP_FUNCTION()
2031 zend_reset_all_cv(&EG(symbol_table) TSRMLS_CC); in PHP_FUNCTION()
2111 if (Z_ARRVAL_P(array) == &EG(symbol_table)) { in PHP_FUNCTION()
2112 zend_reset_all_cv(&EG(symbol_table) TSRMLS_CC); in PHP_FUNCTION()
2733 if (Z_ARRVAL_P(return_value) == &EG(symbol_table)) { in PHP_FUNCTION()
2734 zend_reset_all_cv(&EG(symbol_table) TSRMLS_CC); in PHP_FUNCTION()
2875 if (Z_ARRVAL_P(return_value) == &EG(symbol_table)) { in PHP_FUNCTION()
3182 if (return_value->value.ht == &EG(symbol_table)) { in php_array_intersect()
3599 if (return_value->value.ht == &EG(symbol_table)) { in php_array_diff()
/PHP-5.5/ext/sqlite3/
H A Dsqlite3.c701 fc->fci.symbol_table = NULL;
874 collation->fci.fci.symbol_table = NULL;
/PHP-5.5/ext/spl/
H A Dspl_directory.c2127 fci.symbol_table = NULL; in spl_filesystem_file_call()
H A Dspl_engine.h69 fci.symbol_table = NULL; in spl_instantiate_arg_n()
H A Dspl_array.c525 if (ht == &EG(symbol_table)) { in spl_array_unset_dimension_ex()
/PHP-5.5/ext/soap/
H A Dsoap.c924 fci.symbol_table = NULL; in PHP_METHOD()
1580 …if (zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"), (void **) &server_vars) == SUC…
/PHP-5.5/ext/session/
H A Dsession.c305 if (zend_hash_find(&EG(symbol_table), "_SERVER", sizeof("_SERVER"), (void **) &array) == SUCCESS && in php_session_create_id()
944 if (zend_hash_find(&EG(symbol_table), name, namelen + 1, (void **) &tmp) == SUCCESS) {
945 …if ((Z_TYPE_PP(tmp) == IS_ARRAY && Z_ARRVAL_PP(tmp) == &EG(symbol_table)) || *tmp == PS(http_sessi…
1040 if (zend_hash_find(&EG(symbol_table), name, namelen + 1, (void **) &tmp) == SUCCESS) {
1041 …if ((Z_TYPE_PP(tmp) == IS_ARRAY && Z_ARRVAL_PP(tmp) == &EG(symbol_table)) || *tmp == PS(http_sessi…
1540 …if (PS(use_cookies) && zend_hash_find(&EG(symbol_table), "_COOKIE", sizeof("_COOKIE"), (void **) &…
1550 zend_hash_find(&EG(symbol_table), "_GET", sizeof("_GET"), (void **) &data) == SUCCESS &&
1558 zend_hash_find(&EG(symbol_table), "_POST", sizeof("_POST"), (void **) &data) == SUCCESS &&
/PHP-5.5/ext/reflection/
H A Dphp_reflection.c1400 fci.symbol_table = NULL; in _reflection_export()
1916 fci.symbol_table = NULL; in ZEND_METHOD()
1983 fci.symbol_table = NULL; in ZEND_METHOD()
2888 fci.symbol_table = NULL; in ZEND_METHOD()
2997 fci.symbol_table = NULL; in ZEND_METHOD()
4233 fci.symbol_table = NULL; in ZEND_METHOD()
4338 fci.symbol_table = NULL; in ZEND_METHOD()
/PHP-5.5/ext/pgsql/
H A Dpgsql.c2684 fci.symbol_table = NULL;
/PHP-5.5/ext/pdo_sqlite/
H A Dsqlite_driver.c331 fc->fci.symbol_table = NULL; in do_callback()
495 collation->fc.fci.symbol_table = NULL; in php_sqlite3_collation_callback()
/PHP-5.5/ext/pdo/
H A Dpdo_dbh.c469 fci.symbol_table = NULL; in pdo_stmt_construct()
H A Dpdo_stmt.c758 fci->symbol_table = NULL; in do_fetch_class_prepare()
/PHP-5.5/ext/opcache/
H A Dzend_accelerator_util_funcs.c257 if (ret->value.ht && ret->value.ht != &EG(symbol_table)) {
374 if (((zval*)p->pDataPtr)->value.ht && ((zval*)p->pDataPtr)->value.ht != &EG(symbol_table)) {
H A DZendAccelerator.c1248 …if (zend_hash_exists(&EG(symbol_table), jit_auto_globals_info[i].name, jit_auto_globals_info[i].le… in zend_accel_get_auto_globals()
1259 …if (zend_hash_exists(&EG(symbol_table), jit_auto_globals_info[3].name, jit_auto_globals_info[3].le… in zend_accel_get_auto_globals_no_jit()
2182 if (zvalue->value.ht && (zvalue->value.ht != &EG(symbol_table))) {
2296 EG(symbol_table).pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor;
2303 old_destructor = EG(symbol_table).pDestructor;
2304 EG(symbol_table).pDestructor = (dtor_func_t)accel_fast_zval_ptr_dtor;
2306 zend_hash_graceful_reverse_destroy(&EG(symbol_table));
2308 EG(symbol_table).pDestructor = old_destructor;
2310 zend_hash_init(&EG(symbol_table), 0, NULL, NULL, 0);

Completed in 178 milliseconds

12