mem_cache        3214 ext/soap/php_sdl.c 	if ((cache_wsdl & WSDL_CACHE_MEMORY) && SOAP_GLOBAL(mem_cache)) {
mem_cache        3217 ext/soap/php_sdl.c 		if (SUCCESS == zend_hash_find(SOAP_GLOBAL(mem_cache), uri, uri_len+1, (void*)&p)) {
mem_cache        3372 ext/soap/php_sdl.c 			if (SOAP_GLOBAL(mem_cache) == NULL) {
mem_cache        3373 ext/soap/php_sdl.c 				SOAP_GLOBAL(mem_cache) = malloc(sizeof(HashTable));
mem_cache        3374 ext/soap/php_sdl.c 				zend_hash_init(SOAP_GLOBAL(mem_cache), 0, NULL, delete_psdl, 1);
mem_cache        3376 ext/soap/php_sdl.c 			           SOAP_GLOBAL(cache_limit) <= zend_hash_num_elements(SOAP_GLOBAL(mem_cache))) {
mem_cache        3385 ext/soap/php_sdl.c 				for (zend_hash_internal_pointer_reset_ex(SOAP_GLOBAL(mem_cache), &pos);
mem_cache        3386 ext/soap/php_sdl.c 					 zend_hash_get_current_data_ex(SOAP_GLOBAL(mem_cache), (void **) &q, &pos) == SUCCESS;
mem_cache        3387 ext/soap/php_sdl.c 					 zend_hash_move_forward_ex(SOAP_GLOBAL(mem_cache), &pos)) {
mem_cache        3390 ext/soap/php_sdl.c 						zend_hash_get_current_key_ex(SOAP_GLOBAL(mem_cache), &key, &key_len, &idx, 0, &pos);
mem_cache        3394 ext/soap/php_sdl.c 					zend_hash_del(SOAP_GLOBAL(mem_cache), key, key_len);
mem_cache        3405 ext/soap/php_sdl.c 			if (SUCCESS == zend_hash_update(SOAP_GLOBAL(mem_cache), uri,
mem_cache         176 ext/soap/php_soap.h 	HashTable *mem_cache;
mem_cache         585 ext/soap/soap.c 	soap_globals->mem_cache = NULL;
mem_cache         595 ext/soap/soap.c 	if (SOAP_GLOBAL(mem_cache)) {
mem_cache         596 ext/soap/soap.c 		zend_hash_destroy(SOAP_GLOBAL(mem_cache));
mem_cache         597 ext/soap/soap.c 		free(SOAP_GLOBAL(mem_cache));