Searched refs:method_cache (Results 1 – 2 of 2) sorted by relevance
305 if (obj->method_cache == NULL || NULL == (fptr = zend_hash_find_ptr(obj->method_cache, name))) { in com_method_get()370 if (!obj->method_cache) { in com_method_get()371 ALLOC_HASHTABLE(obj->method_cache); in com_method_get()372 zend_hash_init(obj->method_cache, 2, NULL, function_dtor, 0); in com_method_get()375 zend_hash_update_mem(obj->method_cache, name, &f, sizeof(f)); in com_method_get()582 if (obj->method_cache) { in php_com_object_free_storage()583 zend_hash_destroy(obj->method_cache); in php_com_object_free_storage()584 FREE_HASHTABLE(obj->method_cache); in php_com_object_free_storage()
46 HashTable *method_cache; member
Completed in 8 milliseconds