autoload_functions   60 ext/spl/php_spl.c 	spl_globals->autoload_functions      = NULL;
autoload_functions  427 ext/spl/php_spl.c 	if (SPL_G(autoload_functions)) {
autoload_functions  432 ext/spl/php_spl.c 		zend_hash_internal_pointer_reset_ex(SPL_G(autoload_functions), &function_pos);
autoload_functions  433 ext/spl/php_spl.c 		while(zend_hash_has_more_elements_ex(SPL_G(autoload_functions), &function_pos) == SUCCESS) {
autoload_functions  434 ext/spl/php_spl.c 			zend_hash_get_current_key_ex(SPL_G(autoload_functions), &func_name, &func_name_len, &dummy, 0, &function_pos);
autoload_functions  435 ext/spl/php_spl.c 			zend_hash_get_current_data_ex(SPL_G(autoload_functions), (void **) &alfi, &function_pos);
autoload_functions  445 ext/spl/php_spl.c 			zend_hash_move_forward_ex(SPL_G(autoload_functions), &function_pos);
autoload_functions  561 ext/spl/php_spl.c 		if (SPL_G(autoload_functions) && zend_hash_exists(SPL_G(autoload_functions), (char*)lc_name, func_name_len+1)) {
autoload_functions  580 ext/spl/php_spl.c 		if (!SPL_G(autoload_functions)) {
autoload_functions  581 ext/spl/php_spl.c 			ALLOC_HASHTABLE(SPL_G(autoload_functions));
autoload_functions  582 ext/spl/php_spl.c 			zend_hash_init(SPL_G(autoload_functions), 1, NULL, (dtor_func_t) autoload_func_info_dtor, 0);
autoload_functions  594 ext/spl/php_spl.c 			zend_hash_add(SPL_G(autoload_functions), "spl_autoload", sizeof("spl_autoload"), &spl_alfi, sizeof(autoload_func_info), NULL);
autoload_functions  595 ext/spl/php_spl.c 			if (prepend && SPL_G(autoload_functions)->nNumOfElements > 1) {
autoload_functions  597 ext/spl/php_spl.c 				HT_MOVE_TAIL_TO_HEAD(SPL_G(autoload_functions));
autoload_functions  601 ext/spl/php_spl.c 		if (zend_hash_add(SPL_G(autoload_functions), lc_name, func_name_len+1, &alfi.func_ptr, sizeof(autoload_func_info), NULL) == FAILURE) {
autoload_functions  609 ext/spl/php_spl.c 		if (prepend && SPL_G(autoload_functions)->nNumOfElements > 1) {
autoload_functions  611 ext/spl/php_spl.c 			HT_MOVE_TAIL_TO_HEAD(SPL_G(autoload_functions));
autoload_functions  617 ext/spl/php_spl.c 	if (SPL_G(autoload_functions)) {
autoload_functions  669 ext/spl/php_spl.c 	if (SPL_G(autoload_functions)) {
autoload_functions  673 ext/spl/php_spl.c 				zend_hash_destroy(SPL_G(autoload_functions));
autoload_functions  674 ext/spl/php_spl.c 				FREE_HASHTABLE(SPL_G(autoload_functions));
autoload_functions  675 ext/spl/php_spl.c 				SPL_G(autoload_functions) = NULL;
autoload_functions  678 ext/spl/php_spl.c 				zend_hash_clean(SPL_G(autoload_functions));
autoload_functions  683 ext/spl/php_spl.c 			success = zend_hash_del(SPL_G(autoload_functions), lc_name, func_name_len+1);
autoload_functions  689 ext/spl/php_spl.c 				success = zend_hash_del(SPL_G(autoload_functions), lc_name, func_name_len+1);
autoload_functions  731 ext/spl/php_spl.c 		zend_hash_internal_pointer_reset_ex(SPL_G(autoload_functions), &function_pos);
autoload_functions  732 ext/spl/php_spl.c 		while(zend_hash_has_more_elements_ex(SPL_G(autoload_functions), &function_pos) == SUCCESS) {
autoload_functions  733 ext/spl/php_spl.c 			zend_hash_get_current_data_ex(SPL_G(autoload_functions), (void **) &alfi, &function_pos);
autoload_functions  757 ext/spl/php_spl.c 				   zend_hash_get_current_key_ex(SPL_G(autoload_functions), &key, &len, &dummy, 0, &function_pos); 
autoload_functions  762 ext/spl/php_spl.c 			zend_hash_move_forward_ex(SPL_G(autoload_functions), &function_pos);
autoload_functions  966 ext/spl/php_spl.c 	SPL_G(autoload_functions) = NULL;
autoload_functions  978 ext/spl/php_spl.c 	if (SPL_G(autoload_functions)) {
autoload_functions  979 ext/spl/php_spl.c 		zend_hash_destroy(SPL_G(autoload_functions));
autoload_functions  980 ext/spl/php_spl.c 		FREE_HASHTABLE(SPL_G(autoload_functions));
autoload_functions  981 ext/spl/php_spl.c 		SPL_G(autoload_functions) = NULL;
autoload_functions   62 ext/spl/php_spl.h 	HashTable *  autoload_functions;