Home
last modified time | relevance | path

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

/PHP-7.4/Zend/
H A Dzend_globals.h129 HashTable *delayed_autoloads; member
H A Dzend_inheritance.c240 if (!CG(delayed_autoloads)) { in lookup_class()
241 ALLOC_HASHTABLE(CG(delayed_autoloads)); in lookup_class()
242 zend_hash_init(CG(delayed_autoloads), 0, NULL, NULL, 0); in lookup_class()
244 zend_hash_add_empty_element(CG(delayed_autoloads), name); in lookup_class()
2371 HashTable *delayed_autoloads = CG(delayed_autoloads); in load_delayed_classes() local
2374 if (!delayed_autoloads) { in load_delayed_classes()
2379 CG(delayed_autoloads) = NULL; in load_delayed_classes()
2381 ZEND_HASH_FOREACH_STR_KEY(delayed_autoloads, name) { in load_delayed_classes()
2385 zend_hash_destroy(delayed_autoloads); in load_delayed_classes()
2386 FREE_HASHTABLE(delayed_autoloads); in load_delayed_classes()
H A Dzend_compile.c370 CG(delayed_autoloads) = NULL; in init_compiler()
386 if (CG(delayed_autoloads)) { in shutdown_compiler()
387 zend_hash_destroy(CG(delayed_autoloads)); in shutdown_compiler()
388 FREE_HASHTABLE(CG(delayed_autoloads)); in shutdown_compiler()
389 CG(delayed_autoloads) = NULL; in shutdown_compiler()

Completed in 65 milliseconds