Home
last modified time | relevance | path

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

/PHP-5.5/ext/com_dotnet/
H A Dcom_handlers.c281 …if (obj->method_cache == NULL || FAILURE == zend_hash_find(obj->method_cache, name, len, (void**)&… in com_method_get()
346 if (!obj->method_cache) { in com_method_get()
347 ALLOC_HASHTABLE(obj->method_cache); in com_method_get()
348 zend_hash_init(obj->method_cache, 2, NULL, function_dtor, 0); in com_method_get()
351 zend_hash_update(obj->method_cache, name, len, &f, sizeof(f), (void**)&fptr); in com_method_get()
630 if (obj->method_cache) { in php_com_object_free_storage()
631 zend_hash_destroy(obj->method_cache); in php_com_object_free_storage()
632 FREE_HASHTABLE(obj->method_cache); in php_com_object_free_storage()
H A Dphp_com_dotnet_internal.h49 HashTable *method_cache; member

Completed in 10 milliseconds