Home
last modified time | relevance | path

Searched refs:method_cache (Results 1 – 2 of 2) sorted by relevance

/PHP-8.0/ext/com_dotnet/
H A Dcom_handlers.c306 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()
H A Dphp_com_dotnet_internal.h46 HashTable *method_cache; member

Completed in 6 milliseconds