Lines Matching refs:disk_cache
78 struct disk_cache;
174 struct disk_cache *
182 disk_cache_destroy(struct disk_cache *cache);
188 disk_cache_wait_for_idle(struct disk_cache *cache);
194 disk_cache_remove(struct disk_cache *cache, const cache_key key);
206 disk_cache_put(struct disk_cache *cache, const cache_key key,
222 disk_cache_put_nocopy(struct disk_cache *cache, const cache_key key,
240 disk_cache_get(struct disk_cache *cache, const cache_key key, size_t *size);
252 disk_cache_put_key(struct disk_cache *cache, const cache_key key);
265 disk_cache_has_key(struct disk_cache *cache, const cache_key key);
271 disk_cache_compute_key(struct disk_cache *cache, const void *data, size_t size,
275 disk_cache_set_callbacks(struct disk_cache *cache, disk_cache_put_cb put,
280 static inline struct disk_cache *
288 disk_cache_destroy(struct disk_cache *cache) {
293 disk_cache_put(struct disk_cache *cache, const cache_key key,
301 disk_cache_put_nocopy(struct disk_cache *cache, const cache_key key,
309 disk_cache_remove(struct disk_cache *cache, const cache_key key)
315 disk_cache_get(struct disk_cache *cache, const cache_key key, size_t *size)
321 disk_cache_put_key(struct disk_cache *cache, const cache_key key)
327 disk_cache_has_key(struct disk_cache *cache, const cache_key key)
333 disk_cache_compute_key(struct disk_cache *cache, const void *data, size_t size,
340 disk_cache_set_callbacks(struct disk_cache *cache, disk_cache_put_cb put,