method_cache      274 ext/com_dotnet/com_handlers.c 	if (obj->method_cache == NULL || NULL == (fptr = zend_hash_find_ptr(obj->method_cache, name))) {
method_cache      340 ext/com_dotnet/com_handlers.c 			if (!obj->method_cache) {
method_cache      341 ext/com_dotnet/com_handlers.c 				ALLOC_HASHTABLE(obj->method_cache);
method_cache      342 ext/com_dotnet/com_handlers.c 				zend_hash_init(obj->method_cache, 2, NULL, function_dtor, 0);
method_cache      345 ext/com_dotnet/com_handlers.c 			zend_hash_update_mem(obj->method_cache, name, &f, sizeof(f));
method_cache      612 ext/com_dotnet/com_handlers.c 	if (obj->method_cache) {
method_cache      613 ext/com_dotnet/com_handlers.c 		zend_hash_destroy(obj->method_cache);
method_cache      614 ext/com_dotnet/com_handlers.c 		FREE_HASHTABLE(obj->method_cache);
method_cache       52 ext/com_dotnet/php_com_dotnet_internal.h 	HashTable *method_cache;