/third_party/node/deps/npm/node_modules/cacache/locales/ |
D | es.js | 16 x.ls = cache => ls(cache) argument 17 x.ls.flujo = cache => ls.stream(cache) argument 19 x.saca = (cache, clave, ops) => get(cache, clave, ops) argument 20 x.saca.porHacheo = (cache, hacheo, ops) => get.byDigest(cache, hacheo, ops) argument 21 x.saca.sinc = (cache, clave, ops) => get.sync(cache, clave, ops) argument 22 x.saca.sinc.porHacheo = (cache, hacheo, ops) => get.sync.byDigest(cache, hacheo, ops) argument 23 x.saca.flujo = (cache, clave, ops) => get.stream(cache, clave, ops) argument 24 x.saca.flujo.porHacheo = (cache, hacheo, ops) => get.stream.byDigest(cache, hacheo, ops) argument 25 x.sava.copia = (cache, clave, destino, opts) => get.copy(cache, clave, destino, opts) argument 26 x.sava.copia.porHacheo = (cache, hacheo, destino, opts) => get.copy.byDigest(cache, hacheo, destino… argument [all …]
|
D | en.js | 16 x.ls = cache => ls(cache) argument 17 x.ls.stream = cache => ls.stream(cache) argument 19 x.get = (cache, key, opts) => get(cache, key, opts) argument 20 x.get.byDigest = (cache, hash, opts) => get.byDigest(cache, hash, opts) argument 21 x.get.sync = (cache, key, opts) => get.sync(cache, key, opts) argument 22 x.get.sync.byDigest = (cache, key, opts) => get.sync.byDigest(cache, key, opts) argument 23 x.get.stream = (cache, key, opts) => get.stream(cache, key, opts) argument 24 x.get.stream.byDigest = (cache, hash, opts) => get.stream.byDigest(cache, hash, opts) argument 25 x.get.copy = (cache, key, dest, opts) => get.copy(cache, key, dest, opts) argument 26 x.get.copy.byDigest = (cache, hash, dest, opts) => get.copy.byDigest(cache, hash, dest, opts) argument [all …]
|
/third_party/libnl/lib/ |
D | cache.c | 69 int nl_cache_nitems(struct nl_cache *cache) in nl_cache_nitems() 79 int nl_cache_nitems_filter(struct nl_cache *cache, struct nl_object *filter) in nl_cache_nitems_filter() 102 int nl_cache_is_empty(struct nl_cache *cache) in nl_cache_is_empty() 111 struct nl_cache_ops *nl_cache_get_ops(struct nl_cache *cache) in nl_cache_get_ops() 120 struct nl_object *nl_cache_get_first(struct nl_cache *cache) in nl_cache_get_first() 133 struct nl_object *nl_cache_get_last(struct nl_cache *cache) in nl_cache_get_last() 186 struct nl_cache *cache; in nl_cache_alloc() local 237 struct nl_cache *cache; in nl_cache_alloc_and_fill() local 268 struct nl_cache *cache; in nl_cache_alloc_name() local 301 struct nl_cache *cache; in nl_cache_subset() local [all …]
|
/third_party/node/deps/npm/docs/content/cli-commands/ |
D | npm-cache.md | 11 ### Synopsis 25 ### Description 41 ### Details 63 ### A note about the cache's design 74 ### Configuration 76 #### cache subsubsection 82 ### See Also
|
/third_party/libwebsockets/lib/misc/cache-ttl/ |
D | heap.c | 54 _lws_cache_heap_item_destroy(lws_cache_ttl_lru_t_heap_t *cache, in _lws_cache_heap_item_destroy() 74 lws_cache_heap_item_destroy(lws_cache_ttl_lru_t_heap_t *cache, in lws_cache_heap_item_destroy() 153 lws_cache_item_evict_lru(lws_cache_ttl_lru_t_heap_t *cache) in lws_cache_item_evict_lru() 173 lws_cache_ttl_lru_t_heap_t *cache = lws_container_of(sul, in expiry_cb() local 197 earliest_expiry(lws_cache_ttl_lru_t_heap_t *cache, lws_usec_t *pearliest) in earliest_expiry() 213 update_sul(lws_cache_ttl_lru_t_heap_t *cache) in update_sul() 234 lws_cache_heap_specific(lws_cache_ttl_lru_t_heap_t *cache, in lws_cache_heap_specific() 252 lws_cache_heap_tag_match(struct lws_cache_ttl_lru *cache, const char *wc, in lws_cache_heap_tag_match() 262 lws_cache_ttl_lru_t_heap_t *cache = (lws_cache_ttl_lru_t_heap_t *)_c; in lws_cache_heap_lookup() local 326 lws_cache_ttl_lru_t_heap_t *cache = (lws_cache_ttl_lru_t_heap_t *)_c; in lws_cache_heap_write() local [all …]
|
D | lws-cache-ttl.c | 46 lws_cache_schedule(struct lws_cache_ttl_lru *cache, sul_cb_t cb, lws_usec_t e) in lws_cache_schedule() 56 lws_cache_write_through(struct lws_cache_ttl_lru *cache, in lws_cache_write_through() 91 lws_cache_lookup(struct lws_cache_ttl_lru *cache, const char *wildcard_key, in lws_cache_lookup() 203 lws_cache_item_get(struct lws_cache_ttl_lru *cache, const char *specific_key, in lws_cache_item_get() 219 lws_cache_expunge(struct lws_cache_ttl_lru *cache) in lws_cache_expunge() 233 lws_cache_item_remove(struct lws_cache_ttl_lru *cache, const char *wildcard_key) in lws_cache_item_remove() 246 lws_cache_footprint(struct lws_cache_ttl_lru *cache) in lws_cache_footprint() 252 lws_cache_debug_dump(struct lws_cache_ttl_lru *cache) in lws_cache_debug_dump() 290 lws_cache_ttl_lru_t *cache = *_cache; in lws_cache_destroy() local
|
/third_party/node/deps/npm/node_modules/cacache/ |
D | get.js | 20 module.exports = function get (cache, key, opts) { argument 23 module.exports.byDigest = function getByDigest (cache, digest, opts) { argument 26 function getData (byDigest, cache, key, opts) { argument 66 module.exports.sync = function get (cache, key, opts) { argument 69 module.exports.sync.byDigest = function getByDigest (cache, digest, opts) { argument 72 function getDataSync (byDigest, cache, key, opts) { argument 116 function getStream (cache, key, opts) { argument 170 function getStreamDigest (cache, integrity, opts) { argument 202 function info (cache, key, opts) { argument 214 module.exports.copy = function cp (cache, key, dest, opts) { argument [all …]
|
/third_party/skia/third_party/externals/freetype/src/cache/ |
D | ftccache.c | 90 ftc_get_top_node_for_hash( FTC_Cache cache, in ftc_get_top_node_for_hash() 111 ftc_cache_resize( FTC_Cache cache ) in ftc_cache_resize() 223 FTC_Cache cache ) in ftc_node_hash_unlink() 256 FTC_Cache cache ) in ftc_node_hash_link() 274 FTC_Cache cache; in ftc_node_destroy() local 326 FTC_Cache_Init( FTC_Cache cache ) in FTC_Cache_Init() 333 ftc_cache_init( FTC_Cache cache ) in ftc_cache_init() 349 FTC_Cache_Clear( FTC_Cache cache ) in FTC_Cache_Clear() 387 ftc_cache_done( FTC_Cache cache ) in ftc_cache_done() 407 FTC_Cache_Done( FTC_Cache cache ) in FTC_Cache_Done() [all …]
|
D | ftcglyph.c | 42 FTC_Cache cache ) in FTC_GNode_UnselectFamily() 55 FTC_Cache cache ) in FTC_GNode_Done() 67 FTC_Cache cache, in ftc_gnode_compare() 87 FTC_Cache cache, in FTC_GNode_Compare() 106 FTC_Cache cache ) in FTC_Family_Init() 120 FTC_GCache cache = (FTC_GCache)ftccache; in ftc_gcache_init() local 154 FTC_GCache cache = (FTC_GCache)ftccache; in ftc_gcache_done() local 186 FTC_GCache_Lookup( FTC_GCache cache, in FTC_GCache_Lookup()
|
/third_party/freetype/src/cache/ |
D | ftccache.c | 90 ftc_get_top_node_for_hash( FTC_Cache cache, in ftc_get_top_node_for_hash() 112 ftc_cache_resize( FTC_Cache cache ) in ftc_cache_resize() 224 FTC_Cache cache ) in ftc_node_hash_unlink() 257 FTC_Cache cache ) in ftc_node_hash_link() 275 FTC_Cache cache; in ftc_node_destroy() local 327 FTC_Cache_Init( FTC_Cache cache ) in FTC_Cache_Init() 334 ftc_cache_init( FTC_Cache cache ) in ftc_cache_init() 350 FTC_Cache_Clear( FTC_Cache cache ) in FTC_Cache_Clear() 388 ftc_cache_done( FTC_Cache cache ) in ftc_cache_done() 408 FTC_Cache_Done( FTC_Cache cache ) in FTC_Cache_Done() [all …]
|
D | ftcglyph.c | 42 FTC_Cache cache ) in FTC_GNode_UnselectFamily() 55 FTC_Cache cache ) in FTC_GNode_Done() 67 FTC_Cache cache, in ftc_gnode_compare() 87 FTC_Cache cache, in FTC_GNode_Compare() 106 FTC_Cache cache ) in FTC_Family_Init() 120 FTC_GCache cache = (FTC_GCache)ftccache; in ftc_gcache_init() local 154 FTC_GCache cache = (FTC_GCache)ftccache; in ftc_gcache_done() local 186 FTC_GCache_Lookup( FTC_GCache cache, in FTC_GCache_Lookup()
|
/third_party/flutter/skia/third_party/externals/freetype/src/cache/ |
D | ftccache.c | 91 ftc_get_top_node_for_hash( FTC_Cache cache, in ftc_get_top_node_for_hash() 113 ftc_cache_resize( FTC_Cache cache ) in ftc_cache_resize() 225 FTC_Cache cache ) in ftc_node_hash_unlink() 258 FTC_Cache cache ) in ftc_node_hash_link() 276 FTC_Cache cache; in ftc_node_destroy() local 328 FTC_Cache_Init( FTC_Cache cache ) in FTC_Cache_Init() 335 ftc_cache_init( FTC_Cache cache ) in ftc_cache_init() 351 FTC_Cache_Clear( FTC_Cache cache ) in FTC_Cache_Clear() 389 ftc_cache_done( FTC_Cache cache ) in ftc_cache_done() 409 FTC_Cache_Done( FTC_Cache cache ) in FTC_Cache_Done() [all …]
|
D | ftcglyph.c | 43 FTC_Cache cache ) in FTC_GNode_UnselectFamily() 56 FTC_Cache cache ) in FTC_GNode_Done() 68 FTC_Cache cache, in ftc_gnode_compare() 88 FTC_Cache cache, in FTC_GNode_Compare() 107 FTC_Cache cache ) in FTC_Family_Init() 121 FTC_GCache cache = (FTC_GCache)ftccache; in ftc_gcache_init() local 155 FTC_GCache cache = (FTC_GCache)ftccache; in ftc_gcache_done() local 187 FTC_GCache_Lookup( FTC_GCache cache, in FTC_GCache_Lookup()
|
/third_party/mesa3d/src/gallium/winsys/virgl/common/ |
D | virgl_resource_cache.c | 50 virgl_resource_cache_entry_release(struct virgl_resource_cache *cache, in virgl_resource_cache_entry_release() 58 virgl_resource_cache_destroy_expired(struct virgl_resource_cache *cache, int64_t now) in virgl_resource_cache_destroy_expired() 72 virgl_resource_cache_init(struct virgl_resource_cache *cache, in virgl_resource_cache_init() 86 virgl_resource_cache_add(struct virgl_resource_cache *cache, in virgl_resource_cache_add() 103 virgl_resource_cache_remove_compatible(struct virgl_resource_cache *cache, in virgl_resource_cache_remove_compatible() 149 virgl_resource_cache_flush(struct virgl_resource_cache *cache) in virgl_resource_cache_flush()
|
/third_party/skia/third_party/externals/swiftshader/tests/SystemUnitTests/ |
D | LRUCacheTests.cpp | 27 void checkRange(const Cache &cache, std::vector<std::pair<typename Cache::Key, typename Cache::Data… in checkRange() 46 LRUCache<std::string, std::string> cache(8); in TEST() local 63 LRUCache<std::string, std::string> cache(4); in TEST() local 85 LRUCache<std::string, std::string> cache(4); in TEST() local 111 LRUCache<std::string, std::string> cache(4); in TEST() local 160 LRUCache<std::string, std::string> cache(4); in TEST() local
|
/third_party/mbedtls/library/ |
D | ssl_cache.c | 41 void mbedtls_ssl_cache_init( mbedtls_ssl_cache_context *cache ) in mbedtls_ssl_cache_init() 53 static int ssl_cache_find_entry( mbedtls_ssl_cache_context *cache, in ssl_cache_find_entry() 98 mbedtls_ssl_cache_context *cache = (mbedtls_ssl_cache_context *) data; in mbedtls_ssl_cache_get() local 127 static int ssl_cache_pick_writing_slot( mbedtls_ssl_cache_context *cache, in ssl_cache_pick_writing_slot() 253 mbedtls_ssl_cache_context *cache = (mbedtls_ssl_cache_context *) data; in mbedtls_ssl_cache_set() local 321 void mbedtls_ssl_cache_set_timeout( mbedtls_ssl_cache_context *cache, int timeout ) in mbedtls_ssl_cache_set_timeout() 329 void mbedtls_ssl_cache_set_max_entries( mbedtls_ssl_cache_context *cache, int max ) in mbedtls_ssl_cache_set_max_entries() 336 void mbedtls_ssl_cache_free( mbedtls_ssl_cache_context *cache ) in mbedtls_ssl_cache_free()
|
/third_party/mesa3d/src/freedreno/drm/ |
D | freedreno_bo_cache.c | 34 add_bucket(struct fd_bo_cache *cache, int size) in add_bucket() 50 fd_bo_cache_init(struct fd_bo_cache *cache, int coarse) in fd_bo_cache_init() 80 fd_bo_cache_cleanup(struct fd_bo_cache *cache, time_t time) in fd_bo_cache_cleanup() 108 get_bucket(struct fd_bo_cache *cache, uint32_t size) in get_bucket() 154 fd_bo_cache_alloc(struct fd_bo_cache *cache, uint32_t *size, uint32_t flags) in fd_bo_cache_alloc() 186 fd_bo_cache_free(struct fd_bo_cache *cache, struct fd_bo *bo) in fd_bo_cache_free()
|
/third_party/mesa3d/src/util/ |
D | disk_cache.c | 76 struct disk_cache *cache = NULL; in disk_cache_create() local 231 disk_cache_destroy(struct disk_cache *cache) in disk_cache_destroy() 247 disk_cache_wait_for_idle(struct disk_cache *cache) in disk_cache_wait_for_idle() 253 disk_cache_remove(struct disk_cache *cache, const cache_key key) in disk_cache_remove() 264 create_put_job(struct disk_cache *cache, const cache_key key, in create_put_job() 362 disk_cache_put(struct disk_cache *cache, const cache_key key, in disk_cache_put() 385 disk_cache_put_nocopy(struct disk_cache *cache, const cache_key key, in disk_cache_put_nocopy() 411 disk_cache_get(struct disk_cache *cache, const cache_key key, size_t *size) in disk_cache_get() 450 disk_cache_put_key(struct disk_cache *cache, const cache_key key) in disk_cache_put_key() 477 disk_cache_has_key(struct disk_cache *cache, const cache_key key) in disk_cache_has_key() [all …]
|
/third_party/node/deps/npm/node_modules/cacache/lib/ |
D | entry-index.js | 25 constructor (cache, key) { argument 39 function insert (cache, key, integrity, opts) { argument 77 function insertSync (cache, key, integrity, opts) { argument 103 function find (cache, key) { argument 123 function findSync (cache, key) { argument 143 function del (cache, key, opts) { argument 148 function delSync (cache, key, opts) { argument 153 function lsStream (cache) { argument 192 function ls (cache) { argument 239 function bucketDir (cache) { argument [all …]
|
D | verify.js | 29 function verify (cache, opts) { argument 58 function markStartTime (cache, opts) { argument 62 function markEndTime (cache, opts) { argument 66 function fixPerms (cache, opts) { argument 83 function garbageCollect (cache, opts) { argument 154 function rebuildIndex (cache, opts) { argument 188 function rebuildBucket (cache, bucket, stats, opts) { argument 207 function cleanTmp (cache, opts) { argument 212 function writeVerifile (cache, opts) { argument 223 function lastRun (cache) { argument
|
/third_party/ntfs-3g/libntfs-3g/ |
D | cache.c | 63 static void inserthashindex(struct CACHE_HEADER *cache, in inserthashindex() 103 static void drophashindex(struct CACHE_HEADER *cache, in drophashindex() 147 struct CACHED_GENERIC *ntfs_fetch_cache(struct CACHE_HEADER *cache, in ntfs_fetch_cache() 212 struct CACHED_GENERIC *ntfs_enter_cache(struct CACHE_HEADER *cache, in ntfs_enter_cache() 335 static void do_invalidate(struct CACHE_HEADER *cache, in do_invalidate() 374 int ntfs_invalidate_cache(struct CACHE_HEADER *cache, in ntfs_invalidate_cache() 432 int ntfs_remove_cache(struct CACHE_HEADER *cache, in ntfs_remove_cache() 451 static void ntfs_free_cache(struct CACHE_HEADER *cache) in ntfs_free_cache() 477 struct CACHE_HEADER *cache; in ntfs_create_cache() local
|
/third_party/mesa3d/src/etnaviv/drm/ |
D | etnaviv_bo_cache.c | 32 static void add_bucket(struct etna_bo_cache *cache, int size) in add_bucket() 43 void etna_bo_cache_init(struct etna_bo_cache *cache) in etna_bo_cache_init() 69 void etna_bo_cache_cleanup(struct etna_bo_cache *cache, time_t time) in etna_bo_cache_cleanup() 96 static struct etna_bo_bucket *get_bucket(struct etna_bo_cache *cache, uint32_t size) in get_bucket() 158 struct etna_bo *etna_bo_cache_alloc(struct etna_bo_cache *cache, uint32_t *size, in etna_bo_cache_alloc() 182 int etna_bo_cache_free(struct etna_bo_cache *cache, struct etna_bo *bo) in etna_bo_cache_free()
|
/third_party/libdrm/etnaviv/ |
D | etnaviv_bo_cache.c | 33 static void add_bucket(struct etna_bo_cache *cache, int size) in add_bucket() 44 drm_private void etna_bo_cache_init(struct etna_bo_cache *cache) in etna_bo_cache_init() 70 drm_private void etna_bo_cache_cleanup(struct etna_bo_cache *cache, time_t time) in etna_bo_cache_cleanup() 96 static struct etna_bo_bucket *get_bucket(struct etna_bo_cache *cache, uint32_t size) in get_bucket() 158 drm_private struct etna_bo *etna_bo_cache_alloc(struct etna_bo_cache *cache, uint32_t *size, in etna_bo_cache_alloc() 181 drm_private int etna_bo_cache_free(struct etna_bo_cache *cache, struct etna_bo *bo) in etna_bo_cache_free()
|
/third_party/libdrm/freedreno/ |
D | freedreno_bo_cache.c | 36 add_bucket(struct fd_bo_cache *cache, int size) in add_bucket() 52 fd_bo_cache_init(struct fd_bo_cache *cache, int coarse) in fd_bo_cache_init() 82 fd_bo_cache_cleanup(struct fd_bo_cache *cache, time_t time) in fd_bo_cache_cleanup() 109 static struct fd_bo_bucket * get_bucket(struct fd_bo_cache *cache, uint32_t size) in get_bucket() 162 fd_bo_cache_alloc(struct fd_bo_cache *cache, uint32_t *size, uint32_t flags) in fd_bo_cache_alloc() 194 fd_bo_cache_free(struct fd_bo_cache *cache, struct fd_bo *bo) in fd_bo_cache_free()
|
/third_party/node/deps/npm/node_modules/cacache/lib/content/ |
D | read.js | 21 function read (cache, integrity, opts) { argument 37 function readSync (cache, integrity, opts) { argument 53 function readStream (cache, integrity, opts) { argument 80 function copy (cache, integrity, dest, opts) { argument 87 function copySync (cache, integrity, dest, opts) { argument 95 function hasContent (cache, integrity) { argument 112 function hasContentSync (cache, integrity) { argument 131 function withContentSri (cache, integrity, fn) { argument 159 function withContentSriSync (cache, integrity, fn) { argument
|