SPL_G 318 ext/spl/php_spl.c char *class_name, *lc_name, *file_exts = SPL_G(autoload_extensions); SPL_G 319 ext/spl/php_spl.c int class_name_len, file_exts_len = SPL_G(autoload_extensions_len), found = 0; SPL_G 356 ext/spl/php_spl.c if (!found && !SPL_G(autoload_running)) { SPL_G 380 ext/spl/php_spl.c if (SPL_G(autoload_extensions)) { SPL_G 381 ext/spl/php_spl.c efree(SPL_G(autoload_extensions)); SPL_G 383 ext/spl/php_spl.c SPL_G(autoload_extensions) = estrndup(file_exts, file_exts_len); SPL_G 384 ext/spl/php_spl.c SPL_G(autoload_extensions_len) = file_exts_len; SPL_G 387 ext/spl/php_spl.c if (SPL_G(autoload_extensions) == NULL) { SPL_G 390 ext/spl/php_spl.c RETURN_STRINGL(SPL_G(autoload_extensions), SPL_G(autoload_extensions_len), 1); SPL_G 427 ext/spl/php_spl.c if (SPL_G(autoload_functions)) { SPL_G 428 ext/spl/php_spl.c int l_autoload_running = SPL_G(autoload_running); SPL_G 429 ext/spl/php_spl.c SPL_G(autoload_running) = 1; SPL_G 432 ext/spl/php_spl.c zend_hash_internal_pointer_reset_ex(SPL_G(autoload_functions), &function_pos); SPL_G 433 ext/spl/php_spl.c while(zend_hash_has_more_elements_ex(SPL_G(autoload_functions), &function_pos) == SUCCESS) { SPL_G 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); SPL_G 435 ext/spl/php_spl.c zend_hash_get_current_data_ex(SPL_G(autoload_functions), (void **) &alfi, &function_pos); SPL_G 445 ext/spl/php_spl.c zend_hash_move_forward_ex(SPL_G(autoload_functions), &function_pos); SPL_G 449 ext/spl/php_spl.c SPL_G(autoload_running) = l_autoload_running; SPL_G 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)) { SPL_G 580 ext/spl/php_spl.c if (!SPL_G(autoload_functions)) { SPL_G 581 ext/spl/php_spl.c ALLOC_HASHTABLE(SPL_G(autoload_functions)); SPL_G 582 ext/spl/php_spl.c zend_hash_init(SPL_G(autoload_functions), 1, NULL, (dtor_func_t) autoload_func_info_dtor, 0); SPL_G 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); SPL_G 595 ext/spl/php_spl.c if (prepend && SPL_G(autoload_functions)->nNumOfElements > 1) { SPL_G 597 ext/spl/php_spl.c HT_MOVE_TAIL_TO_HEAD(SPL_G(autoload_functions)); SPL_G 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) { SPL_G 609 ext/spl/php_spl.c if (prepend && SPL_G(autoload_functions)->nNumOfElements > 1) { SPL_G 611 ext/spl/php_spl.c HT_MOVE_TAIL_TO_HEAD(SPL_G(autoload_functions)); SPL_G 617 ext/spl/php_spl.c if (SPL_G(autoload_functions)) { SPL_G 669 ext/spl/php_spl.c if (SPL_G(autoload_functions)) { SPL_G 672 ext/spl/php_spl.c if (!SPL_G(autoload_running)) { SPL_G 673 ext/spl/php_spl.c zend_hash_destroy(SPL_G(autoload_functions)); SPL_G 674 ext/spl/php_spl.c FREE_HASHTABLE(SPL_G(autoload_functions)); SPL_G 675 ext/spl/php_spl.c SPL_G(autoload_functions) = NULL; SPL_G 678 ext/spl/php_spl.c zend_hash_clean(SPL_G(autoload_functions)); SPL_G 683 ext/spl/php_spl.c success = zend_hash_del(SPL_G(autoload_functions), lc_name, func_name_len+1); SPL_G 689 ext/spl/php_spl.c success = zend_hash_del(SPL_G(autoload_functions), lc_name, func_name_len+1); SPL_G 731 ext/spl/php_spl.c zend_hash_internal_pointer_reset_ex(SPL_G(autoload_functions), &function_pos); SPL_G 732 ext/spl/php_spl.c while(zend_hash_has_more_elements_ex(SPL_G(autoload_functions), &function_pos) == SUCCESS) { SPL_G 733 ext/spl/php_spl.c zend_hash_get_current_data_ex(SPL_G(autoload_functions), (void **) &alfi, &function_pos); SPL_G 757 ext/spl/php_spl.c zend_hash_get_current_key_ex(SPL_G(autoload_functions), &key, &len, &dummy, 0, &function_pos); SPL_G 762 ext/spl/php_spl.c zend_hash_move_forward_ex(SPL_G(autoload_functions), &function_pos); SPL_G 794 ext/spl/php_spl.c if (!SPL_G(hash_mask_init)) { SPL_G 799 ext/spl/php_spl.c SPL_G(hash_mask_handle) = (intptr_t)(php_mt_rand(TSRMLS_C) >> 1); SPL_G 800 ext/spl/php_spl.c SPL_G(hash_mask_handlers) = (intptr_t)(php_mt_rand(TSRMLS_C) >> 1); SPL_G 801 ext/spl/php_spl.c SPL_G(hash_mask_init) = 1; SPL_G 804 ext/spl/php_spl.c hash_handle = SPL_G(hash_mask_handle)^(intptr_t)Z_OBJ_HANDLE_P(obj); SPL_G 805 ext/spl/php_spl.c hash_handlers = SPL_G(hash_mask_handlers)^(intptr_t)Z_OBJ_HT_P(obj); SPL_G 964 ext/spl/php_spl.c SPL_G(autoload_extensions) = NULL; SPL_G 965 ext/spl/php_spl.c SPL_G(autoload_extensions_len) = 0; SPL_G 966 ext/spl/php_spl.c SPL_G(autoload_functions) = NULL; SPL_G 967 ext/spl/php_spl.c SPL_G(hash_mask_init) = 0; SPL_G 973 ext/spl/php_spl.c if (SPL_G(autoload_extensions)) { SPL_G 974 ext/spl/php_spl.c efree(SPL_G(autoload_extensions)); SPL_G 975 ext/spl/php_spl.c SPL_G(autoload_extensions) = NULL; SPL_G 976 ext/spl/php_spl.c SPL_G(autoload_extensions_len) = 0; SPL_G 978 ext/spl/php_spl.c if (SPL_G(autoload_functions)) { SPL_G 979 ext/spl/php_spl.c zend_hash_destroy(SPL_G(autoload_functions)); SPL_G 980 ext/spl/php_spl.c FREE_HASHTABLE(SPL_G(autoload_functions)); SPL_G 981 ext/spl/php_spl.c SPL_G(autoload_functions) = NULL; SPL_G 983 ext/spl/php_spl.c if (SPL_G(hash_mask_init)) { SPL_G 984 ext/spl/php_spl.c SPL_G(hash_mask_init) = 0;