Home
last modified time | relevance | path

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

/PHP-7.4/ext/com_dotnet/
H A Dcom_handlers.c297 if (obj->method_cache == NULL || NULL == (fptr = zend_hash_find_ptr(obj->method_cache, name))) { in com_method_get()
362 if (!obj->method_cache) { in com_method_get()
363 ALLOC_HASHTABLE(obj->method_cache); in com_method_get()
364 zend_hash_init(obj->method_cache, 2, NULL, function_dtor, 0); in com_method_get()
367 zend_hash_update_mem(obj->method_cache, name, &f, sizeof(f)); in com_method_get()
634 if (obj->method_cache) { in php_com_object_free_storage()
635 zend_hash_destroy(obj->method_cache); in php_com_object_free_storage()
636 FREE_HASHTABLE(obj->method_cache); in php_com_object_free_storage()
H A Dphp_com_dotnet_internal.h48 HashTable *method_cache; member

Completed in 11 milliseconds