autoload_functions   59 ext/spl/php_spl.c 	spl_globals->autoload_functions      = NULL;
autoload_functions  419 ext/spl/php_spl.c 	if (SPL_G(autoload_functions)) {
autoload_functions  426 ext/spl/php_spl.c 		zend_hash_internal_pointer_reset_ex(SPL_G(autoload_functions), &pos);
autoload_functions  427 ext/spl/php_spl.c 		while (zend_hash_get_current_key_ex(SPL_G(autoload_functions), &func_name, &num_idx, &pos) == HASH_KEY_IS_STRING) {
autoload_functions  428 ext/spl/php_spl.c 			alfi = zend_hash_get_current_data_ptr_ex(SPL_G(autoload_functions), &pos);
autoload_functions  438 ext/spl/php_spl.c 			zend_hash_move_forward_ex(SPL_G(autoload_functions), &pos);
autoload_functions  551 ext/spl/php_spl.c 		if (SPL_G(autoload_functions) && zend_hash_exists(SPL_G(autoload_functions), lc_name)) {
autoload_functions  569 ext/spl/php_spl.c 		if (!SPL_G(autoload_functions)) {
autoload_functions  570 ext/spl/php_spl.c 			ALLOC_HASHTABLE(SPL_G(autoload_functions));
autoload_functions  571 ext/spl/php_spl.c 			zend_hash_init(SPL_G(autoload_functions), 1, NULL, autoload_func_info_dtor, 0);
autoload_functions  583 ext/spl/php_spl.c 			zend_hash_str_add_mem(SPL_G(autoload_functions), "spl_autoload", sizeof("spl_autoload") - 1,
autoload_functions  585 ext/spl/php_spl.c 			if (prepend && SPL_G(autoload_functions)->nNumOfElements > 1) {
autoload_functions  587 ext/spl/php_spl.c 				HT_MOVE_TAIL_TO_HEAD(SPL_G(autoload_functions));
autoload_functions  591 ext/spl/php_spl.c 		if (zend_hash_add_mem(SPL_G(autoload_functions), lc_name, &alfi, sizeof(autoload_func_info)) == NULL) {
autoload_functions  599 ext/spl/php_spl.c 		if (prepend && SPL_G(autoload_functions)->nNumOfElements > 1) {
autoload_functions  601 ext/spl/php_spl.c 			HT_MOVE_TAIL_TO_HEAD(SPL_G(autoload_functions));
autoload_functions  607 ext/spl/php_spl.c 	if (SPL_G(autoload_functions)) {
autoload_functions  659 ext/spl/php_spl.c 	if (SPL_G(autoload_functions)) {
autoload_functions  663 ext/spl/php_spl.c 				zend_hash_destroy(SPL_G(autoload_functions));
autoload_functions  664 ext/spl/php_spl.c 				FREE_HASHTABLE(SPL_G(autoload_functions));
autoload_functions  665 ext/spl/php_spl.c 				SPL_G(autoload_functions) = NULL;
autoload_functions  668 ext/spl/php_spl.c 				zend_hash_clean(SPL_G(autoload_functions));
autoload_functions  673 ext/spl/php_spl.c 			success = zend_hash_del(SPL_G(autoload_functions), lc_name);
autoload_functions  678 ext/spl/php_spl.c 				success = zend_hash_del(SPL_G(autoload_functions), lc_name);
autoload_functions  720 ext/spl/php_spl.c 		ZEND_HASH_FOREACH_STR_KEY_PTR(SPL_G(autoload_functions), key, alfi) {
autoload_functions  935 ext/spl/php_spl.c 	SPL_G(autoload_functions) = NULL;
autoload_functions  946 ext/spl/php_spl.c 	if (SPL_G(autoload_functions)) {
autoload_functions  947 ext/spl/php_spl.c 		zend_hash_destroy(SPL_G(autoload_functions));
autoload_functions  948 ext/spl/php_spl.c 		FREE_HASHTABLE(SPL_G(autoload_functions));
autoload_functions  949 ext/spl/php_spl.c 		SPL_G(autoload_functions) = NULL;
autoload_functions   64 ext/spl/php_spl.h 	HashTable   *autoload_functions;