Home
last modified time | relevance | path

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

/PHP-8.2/Zend/
H A Dzend_globals.h149 HashTable *delayed_autoloads; member
H A Dzend_inheritance.c239 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()
2804 HashTable *delayed_autoloads = CG(delayed_autoloads); in load_delayed_classes() local
2805 if (!delayed_autoloads) { in load_delayed_classes()
2817 while (zend_hash_get_current_key_ex(delayed_autoloads, &name, &idx, &pos) in load_delayed_classes()
2820 zend_hash_del(delayed_autoloads, name); in load_delayed_classes()
H A Dzend_compile.c443 CG(delayed_autoloads) = NULL; in init_compiler()
463 if (CG(delayed_autoloads)) { in shutdown_compiler()
464 zend_hash_destroy(CG(delayed_autoloads)); in shutdown_compiler()
465 FREE_HASHTABLE(CG(delayed_autoloads)); in shutdown_compiler()
466 CG(delayed_autoloads) = NULL; in shutdown_compiler()

Completed in 73 milliseconds