Searched refs:cache (Results 1 - 25 of 785) sorted by relevance

1234567891011>>

/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/glue/
H A Dsetup.sh20 cd ns1 && cp -f cache.in cache
H A Dclean.sh24 rm -f dig.out ns1/cache
/macosx-10.9.5/libarchive-29/libarchive/libarchive/
H A Darchive_read_disk_set_standard_lookup.c72 } cache[name_cache_size]; member in struct:name_cache
83 * a simple cache to accelerate such lookups---into the archive_read_disk
102 "Can't allocate uname/gname lookup cache");
124 struct name_cache *cache = (struct name_cache *)data; local
127 if (cache != NULL) {
128 for (i = 0; i < cache->size; i++) {
129 if (cache->cache[i].name != NULL &&
130 cache->cache[
142 lookup_name(struct name_cache *cache, const char * (*lookup_fn)(struct name_cache *, id_t), id_t id) argument
186 lookup_uname_helper(struct name_cache *cache, id_t id) argument
235 lookup_gname_helper(struct name_cache *cache, id_t id) argument
[all...]
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkCache.c3 * Theme engine resource cache.
18 * resource cache instead of directly from Tk; the cache
49 * Initialize a new resource cache.
53 Ttk_ResourceCache cache = (Ttk_ResourceCache)ckalloc(sizeof(*cache)); local
55 cache->tkwin = NULL; /* initialized later */
56 cache->interp = interp;
57 Tcl_InitHashTable(&cache->fontTable, TCL_STRING_KEYS);
58 Tcl_InitHashTable(&cache
70 Ttk_ClearCache(Ttk_ResourceCache cache) argument
142 Ttk_FreeResourceCache(Ttk_ResourceCache cache) argument
173 Ttk_ResourceCache cache = clientData; local
190 InitCacheWindow(Ttk_ResourceCache cache, Tk_Window tkwin) argument
204 Ttk_RegisterNamedColor( Ttk_ResourceCache cache, const char *colorName, XColor *colorPtr) argument
234 CheckNamedColor(Ttk_ResourceCache cache, Tcl_Obj *objPtr) argument
283 Ttk_UseFont(Ttk_ResourceCache cache, Tk_Window tkwin, Tcl_Obj *objPtr) argument
294 Ttk_UseColor(Ttk_ResourceCache cache, Tk_Window tkwin, Tcl_Obj *objPtr) argument
306 Ttk_UseBorder( Ttk_ResourceCache cache, Tk_Window tkwin, Tcl_Obj *objPtr) argument
327 Ttk_UseImage(Ttk_ResourceCache cache, Tk_Window tkwin, Tcl_Obj *objPtr) argument
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/
H A Dcache.c31 #include <dns/cache.h>
46 #define VALID_CACHE(cache) ISC_MAGIC_VALID(cache, CACHE_MAGIC)
67 * cache cleaning.
88 * Accesses to a cache cleaner object are synchronized through
89 * task/event serialization, or locked from the cache object.
100 dns_cache_t *cache; member in struct:cache_cleaner
113 isc_boolean_t overmem; /*% The cache is in an overmem state. */
118 * The actual cache object.
126 isc_mem_t *mctx; /* Main cache memor
167 cache_create_db(dns_cache_t *cache, dns_db_t **db) argument
201 dns_cache_t *cache; local
339 cache_free(dns_cache_t *cache) argument
400 dns_cache_attach(dns_cache_t *cache, dns_cache_t **targetp) argument
414 dns_cache_t *cache; local
459 dns_cache_attachdb(dns_cache_t *cache, dns_db_t **dbp) argument
471 dns_cache_setfilename(dns_cache_t *cache, const char *filename) argument
492 dns_cache_load(dns_cache_t *cache) argument
509 dns_cache_dump(dns_cache_t *cache) argument
532 dns_cache_setcleaninginterval(dns_cache_t *cache, unsigned int t) argument
569 dns_cache_getcleaninginterval(dns_cache_t *cache) argument
582 dns_cache_getname(dns_cache_t *cache) argument
594 cache_cleaner_init(dns_cache_t *cache, isc_taskmgr_t *taskmgr, isc_timermgr_t *timermgr, cache_cleaner_t *cleaner) argument
959 dns_cache_clean(dns_cache_t *cache, isc_stdtime_t now) argument
1010 dns_cache_t *cache = arg; local
1031 dns_cache_setcachesize(dns_cache_t *cache, isc_uint32_t size) argument
1072 dns_cache_getcachesize(dns_cache_t *cache) argument
1089 dns_cache_t *cache = event->ev_arg; local
1128 dns_cache_flush(dns_cache_t *cache) argument
1157 dns_cache_flushname(dns_cache_t *cache, dns_name_t *name) argument
[all...]
/macosx-10.9.5/apache-786.1/httpd/modules/ldap/
H A Dutil_ldap_cache.h37 apr_time_t add_time; /* Time node was added to cache */
44 unsigned long size; /* Size of cache array */
45 unsigned long maxentries; /* Maximum number of cache entries */
46 unsigned long numentries; /* Current number of cache entries */
47 unsigned long fullmark; /* Used to keep track of when cache becomes 3/4 full */
48 apr_time_t marktime; /* Time that the cache became 3/4 full */
51 void * (*copy)(util_ald_cache_t *cache, void *); /* Func to alloc mem and copy payload to new mem */
52 void (*free)(util_ald_cache_t *cache, void *); /* Func to free mem used by the payload */
53 void (*display)(request_rec *r, util_ald_cache_t *cache, void *); /* Func to display the payload contents */
56 unsigned long numpurges; /* No. of times the cache ha
[all...]
H A Dutil_ldap_cache_mgr.c18 * util_ldap_cache_mgr.c: LDAP cache manager things
77 void util_ald_free(util_ald_cache_t *cache, const void *ptr) argument
80 if (cache->rmm_addr) {
83 apr_rmm_free(cache->rmm_addr, apr_rmm_offset_get(cache->rmm_addr, (void *)ptr));
96 void *util_ald_alloc(util_ald_cache_t *cache, unsigned long size) argument
101 if (cache->rmm_addr) {
103 apr_rmm_off_t block = apr_rmm_calloc(cache->rmm_addr, size);
104 return block ? (void *)apr_rmm_addr_get(cache->rmm_addr, block) : NULL;
115 const char *util_ald_strdup(util_ald_cache_t *cache, cons argument
174 util_ald_cache_purge(util_ald_cache_t *cache) argument
266 util_ald_create_cache(util_ldap_state_t *st, long cache_size, unsigned long (*hashfunc)(void *), int (*comparefunc)(void *, void *), void * (*copyfunc)(util_ald_cache_t *cache, void *), void (*freefunc)(util_ald_cache_t *cache, void *), void (*displayfunc)(request_rec *r, util_ald_cache_t *cache, void *)) argument
274 util_ald_cache_t *cache; local
335 util_ald_destroy_cache(util_ald_cache_t *cache) argument
357 util_ald_cache_fetch(util_ald_cache_t *cache, void *payload) argument
385 util_ald_cache_insert(util_ald_cache_t *cache, void *payload) argument
482 util_ald_cache_remove(util_ald_cache_t *cache, void *payload) argument
515 util_ald_cache_display_stats(request_rec *r, util_ald_cache_t *cache, char *name, char *id) argument
[all...]
H A Dutil_ldap_cache.c18 * util_ldap_cache.c: LDAP cache things
48 void *util_ldap_url_node_copy(util_ald_cache_t *cache, void *c) argument
51 util_url_node_t *node = util_ald_alloc(cache, sizeof *node);
54 if (!(node->url = util_ald_strdup(cache, n->url))) {
55 util_ald_free(cache, node->url);
68 void util_ldap_url_node_free(util_ald_cache_t *cache, void *n) argument
72 util_ald_free(cache, node->url);
76 util_ald_free(cache, node);
79 void util_ldap_url_node_display(request_rec *r, util_ald_cache_t *cache, void *n) argument
147 void *util_ldap_search_node_copy(util_ald_cache_t *cache, voi argument
198 util_ldap_search_node_free(util_ald_cache_t *cache, void *n) argument
218 util_ldap_search_node_display(request_rec *r, util_ald_cache_t *cache, void *n) argument
254 util_ldap_compare_node_copy(util_ald_cache_t *cache, void *c) argument
275 util_ldap_compare_node_free(util_ald_cache_t *cache, void *n) argument
284 util_ldap_compare_node_display(request_rec *r, util_ald_cache_t *cache, void *n) argument
333 util_ldap_dn_compare_node_copy(util_ald_cache_t *cache, void *c) argument
351 util_ldap_dn_compare_node_free(util_ald_cache_t *cache, void *n) argument
359 util_ldap_dn_compare_node_display(request_rec *r, util_ald_cache_t *cache, void *n) argument
[all...]
/macosx-10.9.5/bind9-45.100/bind9/lib/dns/include/dns/
H A Dcache.h27 /*! \file dns/cache.h
29 * Defines dns_cache_t, the cache object.
32 *\li A cache object contains DNS data of a single class.
34 * views, each with a different class and its own cache.
79 * Create a new DNS cache.
81 * dns_cache_create2() will create a named cache.
83 * dns_cache_create3() will create a named cache using two separate memory
84 * contexts, one for cache data which can be cleaned and a separate one for
89 * specifies an empty cache name and a single memory context.
97 * cache wil
[all...]
/macosx-10.9.5/objc4-551.1/test/
H A DbadCache.m8 objc\[\d+\]: Method cache corrupted.*
13 objc\[\d+\]: Method cache corrupted\.
53 struct cache_t cache;
66 struct cache_t *cache = &((__bridge struct class_t *)cls)->cache;
67 cache->mask = 0;
68 cache->buckets[0].sel = (void*)~0;
69 cache->buckets[0].imp = (void*)~0;
70 cache->buckets[1].sel = (void*)(uintptr_t)1;
71 cache
[all...]
H A DbadCache2.m8 objc\[\d+\]: Method cache corrupted.*
13 objc\[\d+\]: Method cache corrupted\.
53 struct cache_t cache;
65 // Test cache::find by clobbering the cache and then adding a method
66 struct cache_t *cache = &((__bridge struct class_t *)cls)->cache;
67 cache->mask = 0;
68 cache->buckets[0].sel = (void*)~0;
69 cache
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/tclconfig/
H A Dimg.m485 # Force usage of a cache file.
87 cache_file=config.cache
90 # Make the cache file name correct relative to the subdirectory.
97 echo "running ${CONFIG_SHELL-/bin/sh} $tea_sub_configure $tea_sub_configure_args --cache-file=$tea_sub_cache_file --srcdir=$tea_sub_srcdir $tea_config_arguments"
99 if eval ${CONFIG_SHELL-/bin/sh} $tea_sub_configure $tea_sub_configure_args --cache-file=$tea_sub_cache_file --srcdir=$tea_sub_srcdir $tea_config_arguments
119 -cache-file | --cache-file | --cache-fil | --cache-fi \
120 | --cache
[all...]
/macosx-10.9.5/hfs-226.1.1/fsck_hfs/
H A Dcache.c36 #include "cache.h"
46 * Allocate an unused cache block.
48 void *CacheAllocBlock (Cache_t *cache);
53 * Release an active cache block.
56 CacheFreeBlock( Cache_t *cache, Tag_t *tag );
61 * Obtain a cache block. If one already exists, it is returned. Otherwise a
62 * new one is created and inserted into the cache.
64 int CacheLookup (Cache_t *cache, uint64_t off, Tag_t **tag);
71 int CacheRawRead (Cache_t *cache, uint64_t off, uint32_t len, void *buf);
78 int CacheRawWrite (Cache_t *cache, uint64_
196 CacheInit(Cache_t *cache, int fdRead, int fdWrite, uint32_t devBlockSize, uint32_t cacheBlockSize, uint32_t cacheTotalBlocks, uint32_t hashSize, int preTouch) argument
300 CacheDestroy(Cache_t *cache) argument
330 CacheRead(Cache_t *cache, uint64_t off, uint32_t len, Buf_t **bufp) argument
502 CacheWrite( Cache_t *cache, Buf_t *buf, int age, uint32_t writeOptions ) argument
642 CacheRelease(Cache_t *cache, Buf_t *buf, int age) argument
728 CacheRemove(Cache_t *cache, Tag_t *tag) argument
773 CacheEvict(Cache_t *cache, Tag_t *tag) argument
797 CacheAllocBlock(Cache_t *cache) argument
819 CacheFreeBlock( Cache_t *cache, Tag_t *tag ) argument
919 CacheFlushRange( Cache_t *cache, uint64_t start, uint64_t len, int remove) argument
997 CacheCopyDiskBlocks(Cache_t *cache, uint64_t from_offset, uint64_t to_offset, uint32_t len) argument
1106 CacheWriteBufferToDisk(Cache_t *cache, uint64_t offset, uint32_t write_len, u_char *buffer, uint32_t buf_len) argument
1219 CacheLookup(Cache_t *cache, uint64_t off, Tag_t **tag) argument
1304 CacheRawRead(Cache_t *cache, uint64_t off, uint32_t len, void *buf) argument
1338 CacheRawWrite(Cache_t *cache, uint64_t off, uint32_t len, void *buf) argument
1495 dumpCache(Cache_t *cache) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLAllCollection.cpp51 if (Vector<Element*>* cache = idCache(name)) {
52 if (index < cache->size())
53 return cache->at(index);
54 index -= cache->size();
57 if (Vector<Element*>* cache = nameCache(name)) {
58 if (index < cache->size())
59 return cache->at(index);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cvopengltexturecache.py19 rv, cache = CVOpenGLTextureCacheCreate(None, None, cglCtx, cglFmt, None, None)
21 self.failUnlessIsInstance(cache, CVOpenGLTextureCacheRef)
23 v = CVOpenGLTextureCacheRetain(cache)
24 self.failUnless(v is cache)
28 rv, texture = CVOpenGLTextureCacheCreateTextureFromImage(None, cache, img, None, None)
30 self.failUnlessIsInstance(cache, CVOpenGLTextureRef)
32 CVOpenGLTextureCacheFlush(cache, 0)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cvopengltexturecache.py19 rv, cache = CVOpenGLTextureCacheCreate(None, None, cglCtx, cglFmt, None, None)
21 self.assertIsInstance(cache, CVOpenGLTextureCacheRef)
23 v = CVOpenGLTextureCacheRetain(cache)
24 self.assertTrue(v is cache)
28 rv, texture = CVOpenGLTextureCacheCreateTextureFromImage(None, cache, img, None, None)
30 self.assertIsInstance(cache, CVOpenGLTextureRef)
32 CVOpenGLTextureCacheFlush(cache, 0)
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-meta/
H A Ddncache.c88 * in the cache
92 metadncache_t *cache,
99 assert( cache != NULL );
103 ldap_pvt_thread_mutex_lock( &cache->mutex );
104 entry = ( metadncacheentry_t * )avl_find( cache->tree,
110 * if cache->ttl < 0, cache never expires;
111 * if cache->ttl = 0 no cache is used; shouldn't get here
112 * else, cache i
91 meta_dncache_get_target( metadncache_t *cache, struct berval *ndn ) argument
135 meta_dncache_update_entry( metadncache_t *cache, struct berval *ndn, int target ) argument
199 meta_dncache_delete_entry( metadncache_t *cache, struct berval *ndn ) argument
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/db/
H A Ddns_db_find_10_data7 dns_db_find_10.data rbt vix.com. in cache a.b.c.vix.com. NS 0 1010 ISC_R_NOTFOUND
8 dns_db_find_10.data rbt vix.com. in cache a.b.c.vix.com. NS 0 0 ISC_R_SUCCESS
H A Ddns_db_find_9_data7 dns_db_find_9.data rbt vix.com. in cache a.b.c.vix.com. NS 0 0 ISC_R_NOTFOUND
/macosx-10.9.5/vim-53/src/
H A Dconfigure4 auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache
/macosx-10.9.5/bootp-268.1/bootplib/
H A DNICachePrivate.h36 void PLCache_init(PLCache_t * cache);
37 void PLCache_free(PLCache_t * cache);
39 boolean_t PLCache_read(PLCache_t * cache, const char * filename);
40 boolean_t PLCache_write(PLCache_t * cache, const char * filename);
41 void PLCache_add(PLCache_t * cache, PLCacheEntry_t * entry);
42 void PLCache_append(PLCache_t * cache, PLCacheEntry_t * entry);
43 void PLCache_remove(PLCache_t * cache, PLCacheEntry_t * entry);
58 void PLCache_make_head(PLCache_t * cache, PLCacheEntry_t * entry);
59 void PLCache_print(PLCache_t * cache);
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dctable.c5 /* cache manager
15 /* const void *ctable_locate(cache, key)
16 /* CTABLE *cache;
19 /* void ctable_free(cache)
20 /* CTABLE *cache;
22 /* void ctable_walk(cache, action)
23 /* CTABLE *cache;
28 /* limit. Caches never shrink. Each cache entry consists of a
31 /* ctable_create() creates a cache with the specified size limit, and
40 /* ctable_free() destroys the specified cache, includin
106 CTABLE *cache = (CTABLE *) mymalloc(sizeof(CTABLE)); local
124 ctable_locate(CTABLE *cache, const char *key) argument
178 ctable_free(CTABLE *cache) argument
194 ctable_walk(CTABLE *cache, void (*action) (const char *, const void *)) argument
243 CTABLE *cache; local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/appl/dceutils/
H A Dk5dce.h156 #define krb5_cc_get_principal(cache, principal) (*(cache)->ops->get_princ)(cache, principal)
157 #define krb5_cc_set_flags(cache, flags) (*(cache)->ops->set_flags)(cache, flags)
158 #define krb5_cc_get_name(cache) (*(cache)->ops->get_name)(cache)
159 #define krb5_cc_start_seq_get(cache, curso
[all...]
/macosx-10.9.5/Libc-997.90.3/stdtime/FreeBSD/
H A Dtimelocal.c114 static struct __xlocale_st_time *cache = NULL; local
125 * If the locale name is the same as our cache, use the cache.
127 if (cache && cache->_time_locale_buf && strcmp(name, cache->_time_locale_buf) == 0) {
130 loc->__lc_time = cache;
147 XL_RELEASE(cache);
148 cache = xp;
149 XL_RETAIN(cache);
[all...]
/macosx-10.9.5/screen-22/screen/
H A DMakefile2 rm -f config.cache

Completed in 280 milliseconds

1234567891011>>