Searched refs:delayed_autoloads (Results 1 – 3 of 3) sorted by relevance
/PHP-8.3/Zend/ |
H A D | zend_globals.h | 149 HashTable *delayed_autoloads; member
|
H A D | zend_inheritance.c | 239 if (!CG(delayed_autoloads)) { in register_unresolved_class() 240 ALLOC_HASHTABLE(CG(delayed_autoloads)); in register_unresolved_class() 241 zend_hash_init(CG(delayed_autoloads), 0, NULL, NULL, 0); in register_unresolved_class() 243 zend_hash_add_empty_element(CG(delayed_autoloads), name); in register_unresolved_class() 1030 ZEND_HASH_MAP_FOREACH_STR_KEY(CG(delayed_autoloads), unresolved_class) { in emit_incompatible_method_error() 2818 HashTable *delayed_autoloads = CG(delayed_autoloads); in load_delayed_classes() local 2819 if (!delayed_autoloads) { in load_delayed_classes() 2831 while (zend_hash_get_current_key_ex(delayed_autoloads, &name, &idx, &pos) in load_delayed_classes() 2834 zend_hash_del(delayed_autoloads, name); in load_delayed_classes()
|
H A D | zend_compile.c | 433 CG(delayed_autoloads) = NULL; in init_compiler() 453 if (CG(delayed_autoloads)) { in shutdown_compiler() 454 zend_hash_destroy(CG(delayed_autoloads)); in shutdown_compiler() 455 FREE_HASHTABLE(CG(delayed_autoloads)); in shutdown_compiler() 456 CG(delayed_autoloads) = NULL; in shutdown_compiler()
|
Completed in 66 milliseconds