Home
last modified time | relevance | path

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

/PHP-7.3/ext/com_dotnet/
H A Dcom_handlers.c277 if (obj->method_cache == NULL || NULL == (fptr = zend_hash_find_ptr(obj->method_cache, name))) { in com_method_get()
342 if (!obj->method_cache) { in com_method_get()
343 ALLOC_HASHTABLE(obj->method_cache); in com_method_get()
344 zend_hash_init(obj->method_cache, 2, NULL, function_dtor, 0); in com_method_get()
347 zend_hash_update_mem(obj->method_cache, name, &f, sizeof(f)); in com_method_get()
614 if (obj->method_cache) { in php_com_object_free_storage()
615 zend_hash_destroy(obj->method_cache); in php_com_object_free_storage()
616 FREE_HASHTABLE(obj->method_cache); in php_com_object_free_storage()
H A Dphp_com_dotnet_internal.h50 HashTable *method_cache; member

Completed in 12 milliseconds