Lines Matching refs:disk_cache
77 struct disk_cache;
167 struct disk_cache *
175 disk_cache_destroy(struct disk_cache *cache);
181 disk_cache_remove(struct disk_cache *cache, const cache_key key);
193 disk_cache_put(struct disk_cache *cache, const cache_key key,
211 disk_cache_get(struct disk_cache *cache, const cache_key key, size_t *size);
223 disk_cache_put_key(struct disk_cache *cache, const cache_key key);
236 disk_cache_has_key(struct disk_cache *cache, const cache_key key);
242 disk_cache_compute_key(struct disk_cache *cache, const void *data, size_t size,
246 disk_cache_set_callbacks(struct disk_cache *cache, disk_cache_put_cb put,
251 static inline struct disk_cache *
259 disk_cache_destroy(struct disk_cache *cache) {
264 disk_cache_put(struct disk_cache *cache, const cache_key key,
272 disk_cache_remove(struct disk_cache *cache, const cache_key key)
278 disk_cache_get(struct disk_cache *cache, const cache_key key, size_t *size)
284 disk_cache_put_key(struct disk_cache *cache, const cache_key key)
290 disk_cache_has_key(struct disk_cache *cache, const cache_key key)
296 disk_cache_compute_key(struct disk_cache *cache, const void *data, size_t size,
303 disk_cache_set_callbacks(struct disk_cache *cache, disk_cache_put_cb put,