method_cache 281 ext/com_dotnet/com_handlers.c if (obj->method_cache == NULL || FAILURE == zend_hash_find(obj->method_cache, name, len, (void**)&fptr)) { method_cache 346 ext/com_dotnet/com_handlers.c if (!obj->method_cache) { method_cache 347 ext/com_dotnet/com_handlers.c ALLOC_HASHTABLE(obj->method_cache); method_cache 348 ext/com_dotnet/com_handlers.c zend_hash_init(obj->method_cache, 2, NULL, function_dtor, 0); method_cache 351 ext/com_dotnet/com_handlers.c zend_hash_update(obj->method_cache, name, len, &f, sizeof(f), (void**)&fptr); method_cache 630 ext/com_dotnet/com_handlers.c if (obj->method_cache) { method_cache 631 ext/com_dotnet/com_handlers.c zend_hash_destroy(obj->method_cache); method_cache 632 ext/com_dotnet/com_handlers.c FREE_HASHTABLE(obj->method_cache); method_cache 49 ext/com_dotnet/php_com_dotnet_internal.h HashTable *method_cache;