SPL_G 312 ext/spl/php_spl.c zend_string *class_name, *lc_name, *file_exts = SPL_G(autoload_extensions); SPL_G 344 ext/spl/php_spl.c if (!found && !SPL_G(autoload_running)) { SPL_G 374 ext/spl/php_spl.c if (SPL_G(autoload_extensions)) { SPL_G 375 ext/spl/php_spl.c zend_string_release(SPL_G(autoload_extensions)); SPL_G 377 ext/spl/php_spl.c SPL_G(autoload_extensions) = zend_string_copy(file_exts); SPL_G 380 ext/spl/php_spl.c if (SPL_G(autoload_extensions) == NULL) { SPL_G 383 ext/spl/php_spl.c zend_string_addref(SPL_G(autoload_extensions)); SPL_G 384 ext/spl/php_spl.c RETURN_STR(SPL_G(autoload_extensions)); SPL_G 419 ext/spl/php_spl.c if (SPL_G(autoload_functions)) { SPL_G 422 ext/spl/php_spl.c int l_autoload_running = SPL_G(autoload_running); SPL_G 423 ext/spl/php_spl.c SPL_G(autoload_running) = 1; SPL_G 426 ext/spl/php_spl.c zend_hash_internal_pointer_reset_ex(SPL_G(autoload_functions), &pos); SPL_G 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) { SPL_G 428 ext/spl/php_spl.c alfi = zend_hash_get_current_data_ptr_ex(SPL_G(autoload_functions), &pos); SPL_G 438 ext/spl/php_spl.c zend_hash_move_forward_ex(SPL_G(autoload_functions), &pos); SPL_G 442 ext/spl/php_spl.c SPL_G(autoload_running) = l_autoload_running; SPL_G 551 ext/spl/php_spl.c if (SPL_G(autoload_functions) && zend_hash_exists(SPL_G(autoload_functions), lc_name)) { SPL_G 569 ext/spl/php_spl.c if (!SPL_G(autoload_functions)) { SPL_G 570 ext/spl/php_spl.c ALLOC_HASHTABLE(SPL_G(autoload_functions)); SPL_G 571 ext/spl/php_spl.c zend_hash_init(SPL_G(autoload_functions), 1, NULL, autoload_func_info_dtor, 0); SPL_G 583 ext/spl/php_spl.c zend_hash_str_add_mem(SPL_G(autoload_functions), "spl_autoload", sizeof("spl_autoload") - 1, SPL_G 585 ext/spl/php_spl.c if (prepend && SPL_G(autoload_functions)->nNumOfElements > 1) { SPL_G 587 ext/spl/php_spl.c HT_MOVE_TAIL_TO_HEAD(SPL_G(autoload_functions)); SPL_G 591 ext/spl/php_spl.c if (zend_hash_add_mem(SPL_G(autoload_functions), lc_name, &alfi, sizeof(autoload_func_info)) == NULL) { SPL_G 599 ext/spl/php_spl.c if (prepend && SPL_G(autoload_functions)->nNumOfElements > 1) { SPL_G 601 ext/spl/php_spl.c HT_MOVE_TAIL_TO_HEAD(SPL_G(autoload_functions)); SPL_G 607 ext/spl/php_spl.c if (SPL_G(autoload_functions)) { SPL_G 659 ext/spl/php_spl.c if (SPL_G(autoload_functions)) { SPL_G 662 ext/spl/php_spl.c if (!SPL_G(autoload_running)) { SPL_G 663 ext/spl/php_spl.c zend_hash_destroy(SPL_G(autoload_functions)); SPL_G 664 ext/spl/php_spl.c FREE_HASHTABLE(SPL_G(autoload_functions)); SPL_G 665 ext/spl/php_spl.c SPL_G(autoload_functions) = NULL; SPL_G 668 ext/spl/php_spl.c zend_hash_clean(SPL_G(autoload_functions)); SPL_G 673 ext/spl/php_spl.c success = zend_hash_del(SPL_G(autoload_functions), lc_name); SPL_G 678 ext/spl/php_spl.c success = zend_hash_del(SPL_G(autoload_functions), lc_name); SPL_G 720 ext/spl/php_spl.c ZEND_HASH_FOREACH_STR_KEY_PTR(SPL_G(autoload_functions), key, alfi) { SPL_G 769 ext/spl/php_spl.c if (!SPL_G(hash_mask_init)) { SPL_G 774 ext/spl/php_spl.c SPL_G(hash_mask_handle) = (intptr_t)(php_mt_rand() >> 1); SPL_G 775 ext/spl/php_spl.c SPL_G(hash_mask_handlers) = (intptr_t)(php_mt_rand() >> 1); SPL_G 776 ext/spl/php_spl.c SPL_G(hash_mask_init) = 1; SPL_G 779 ext/spl/php_spl.c hash_handle = SPL_G(hash_mask_handle)^(intptr_t)Z_OBJ_HANDLE_P(obj); SPL_G 780 ext/spl/php_spl.c hash_handlers = SPL_G(hash_mask_handlers); SPL_G 934 ext/spl/php_spl.c SPL_G(autoload_extensions) = NULL; SPL_G 935 ext/spl/php_spl.c SPL_G(autoload_functions) = NULL; SPL_G 936 ext/spl/php_spl.c SPL_G(hash_mask_init) = 0; SPL_G 942 ext/spl/php_spl.c if (SPL_G(autoload_extensions)) { SPL_G 943 ext/spl/php_spl.c zend_string_release(SPL_G(autoload_extensions)); SPL_G 944 ext/spl/php_spl.c SPL_G(autoload_extensions) = NULL; SPL_G 946 ext/spl/php_spl.c if (SPL_G(autoload_functions)) { SPL_G 947 ext/spl/php_spl.c zend_hash_destroy(SPL_G(autoload_functions)); SPL_G 948 ext/spl/php_spl.c FREE_HASHTABLE(SPL_G(autoload_functions)); SPL_G 949 ext/spl/php_spl.c SPL_G(autoload_functions) = NULL; SPL_G 951 ext/spl/php_spl.c if (SPL_G(hash_mask_init)) { SPL_G 952 ext/spl/php_spl.c SPL_G(hash_mask_init) = 0;