Home
last modified time | relevance | path

Searched refs:auto_globals (Results 1 – 3 of 3) sorted by relevance

/PHP-5.4/Zend/
H A Dzend.c42 # define GLOBAL_AUTO_GLOBALS_TABLE CG(auto_globals)
521 compiler_globals->auto_globals = (HashTable *) malloc(sizeof(HashTable)); in compiler_globals_ctor()
522 zend_hash_init_ex(compiler_globals->auto_globals, 8, NULL, NULL, 1, 0); in compiler_globals_ctor()
523 …zend_hash_copy(compiler_globals->auto_globals, global_auto_globals_table, NULL, NULL, sizeof(zend_… in compiler_globals_ctor()
545 if (compiler_globals->auto_globals != GLOBAL_AUTO_GLOBALS_TABLE) { in compiler_globals_dtor()
546 zend_hash_destroy(compiler_globals->auto_globals); in compiler_globals_dtor()
547 free(compiler_globals->auto_globals); in compiler_globals_dtor()
731 compiler_globals->auto_globals = GLOBAL_AUTO_GLOBALS_TABLE; in zend_startup()
H A Dzend_globals.h102 HashTable *auto_globals; member
H A Dzend_compile.c6486 …if (zend_hash_quick_find(CG(auto_globals), name, name_len+1, hash, (void **) &auto_global)==SUCCES… in zend_is_auto_global_quick()
6511 …return zend_hash_add(CG(auto_globals), name, name_len+1, &auto_global, sizeof(zend_auto_global), N… in zend_register_auto_global()
6530 zend_hash_apply(CG(auto_globals), (apply_func_t) zend_auto_global_init TSRMLS_CC); in zend_activate_auto_globals()

Completed in 26 milliseconds