mem_cache        3179 ext/soap/php_sdl.c 	if ((cache_wsdl & WSDL_CACHE_MEMORY) && SOAP_GLOBAL(mem_cache)) {
mem_cache        3182 ext/soap/php_sdl.c 		if (NULL != (p = zend_hash_str_find_ptr(SOAP_GLOBAL(mem_cache), uri, uri_len))) {
mem_cache        3328 ext/soap/php_sdl.c 			if (SOAP_GLOBAL(mem_cache) == NULL) {
mem_cache        3329 ext/soap/php_sdl.c 				SOAP_GLOBAL(mem_cache) = malloc(sizeof(HashTable));
mem_cache        3330 ext/soap/php_sdl.c 				zend_hash_init(SOAP_GLOBAL(mem_cache), 0, NULL, delete_psdl, 1);
mem_cache        3332 ext/soap/php_sdl.c 			           SOAP_GLOBAL(cache_limit) <= zend_hash_num_elements(SOAP_GLOBAL(mem_cache))) {
mem_cache        3338 ext/soap/php_sdl.c 				ZEND_HASH_FOREACH_STR_KEY_PTR(SOAP_GLOBAL(mem_cache), key, q) {
mem_cache        3345 ext/soap/php_sdl.c 					zend_hash_del(SOAP_GLOBAL(mem_cache), latest_key);
mem_cache        3356 ext/soap/php_sdl.c 			if (NULL != zend_hash_str_update_mem(SOAP_GLOBAL(mem_cache), uri,
mem_cache         174 ext/soap/php_soap.h 	HashTable *mem_cache;
mem_cache         587 ext/soap/soap.c 	soap_globals->mem_cache = NULL;
mem_cache         597 ext/soap/soap.c 	if (SOAP_GLOBAL(mem_cache)) {
mem_cache         598 ext/soap/soap.c 		zend_hash_destroy(SOAP_GLOBAL(mem_cache));
mem_cache         599 ext/soap/soap.c 		free(SOAP_GLOBAL(mem_cache));