Lines Matching refs:disk_cache
79 struct disk_cache;
178 struct disk_cache *
186 disk_cache_destroy(struct disk_cache *cache);
192 disk_cache_wait_for_idle(struct disk_cache *cache);
198 disk_cache_remove(struct disk_cache *cache, const cache_key key);
210 disk_cache_put(struct disk_cache *cache, const cache_key key,
226 disk_cache_put_nocopy(struct disk_cache *cache, const cache_key key,
244 disk_cache_get(struct disk_cache *cache, const cache_key key, size_t *size);
256 disk_cache_put_key(struct disk_cache *cache, const cache_key key);
269 disk_cache_has_key(struct disk_cache *cache, const cache_key key);
275 disk_cache_compute_key(struct disk_cache *cache, const void *data, size_t size,
279 disk_cache_set_callbacks(struct disk_cache *cache, disk_cache_put_cb put,
284 static inline struct disk_cache *
292 disk_cache_destroy(struct disk_cache *cache) {
297 disk_cache_put(struct disk_cache *cache, const cache_key key,
305 disk_cache_put_nocopy(struct disk_cache *cache, const cache_key key,
313 disk_cache_remove(struct disk_cache *cache, const cache_key key)
319 disk_cache_get(struct disk_cache *cache, const cache_key key, size_t *size)
325 disk_cache_put_key(struct disk_cache *cache, const cache_key key)
331 disk_cache_has_key(struct disk_cache *cache, const cache_key key)
337 disk_cache_compute_key(struct disk_cache *cache, const void *data, size_t size,
344 disk_cache_set_callbacks(struct disk_cache *cache, disk_cache_put_cb put,