Searched refs:delayed_autoloads (Results 1 – 3 of 3) sorted by relevance
/PHP-8.4/Zend/ |
H A D | zend_globals.h | 151 HashTable *delayed_autoloads; member
|
H A D | zend_inheritance.c | 254 if (!CG(delayed_autoloads)) { in register_unresolved_class() 255 ALLOC_HASHTABLE(CG(delayed_autoloads)); in register_unresolved_class() 256 zend_hash_init(CG(delayed_autoloads), 0, NULL, NULL, 0); in register_unresolved_class() 258 zend_hash_add_empty_element(CG(delayed_autoloads), name); in register_unresolved_class() 1045 ZEND_HASH_MAP_FOREACH_STR_KEY(CG(delayed_autoloads), unresolved_class) { in emit_incompatible_method_error() 3201 HashTable *delayed_autoloads = CG(delayed_autoloads); in load_delayed_classes() local 3202 if (!delayed_autoloads) { in load_delayed_classes() 3214 while (zend_hash_get_current_key_ex(delayed_autoloads, &name, &idx, &pos) in load_delayed_classes() 3217 zend_hash_del(delayed_autoloads, name); in load_delayed_classes()
|
H A D | zend_compile.c | 459 CG(delayed_autoloads) = NULL; in init_compiler() 479 if (CG(delayed_autoloads)) { in shutdown_compiler() 480 zend_hash_destroy(CG(delayed_autoloads)); in shutdown_compiler() 481 FREE_HASHTABLE(CG(delayed_autoloads)); in shutdown_compiler() 482 CG(delayed_autoloads) = NULL; in shutdown_compiler()
|
Completed in 45 milliseconds