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

1234567891011>>

/macosx-10.10.1/bind9-45.101/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.10.1/libarchive-30/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.10.1/tcl-105/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.10.1/bind9-45.101/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.10.1/apache-793/httpd/modules/ldap/
H A Dutil_ldap_cache_mgr.c18 * util_ldap_cache_mgr.c: LDAP cache manager things
79 void util_ald_free(util_ald_cache_t *cache, const void *ptr) argument
82 if (cache->rmm_addr) {
85 apr_rmm_free(cache->rmm_addr, apr_rmm_offset_get(cache->rmm_addr, (void *)ptr));
98 void *util_ald_alloc(util_ald_cache_t *cache, unsigned long size) argument
103 if (cache->rmm_addr) {
105 apr_rmm_off_t block = apr_rmm_calloc(cache->rmm_addr, size);
106 return block ? (void *)apr_rmm_addr_get(cache->rmm_addr, block) : NULL;
117 const char *util_ald_strdup(util_ald_cache_t *cache, cons argument
145 util_ald_sgl_dup(util_ald_cache_t *cache, util_compare_subgroup_t *sgl_in) argument
184 util_ald_sgl_free(util_ald_cache_t *cache, util_compare_subgroup_t **sgl) argument
232 util_ald_cache_purge(util_ald_cache_t *cache) argument
324 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
332 util_ald_cache_t *cache; local
397 util_ald_destroy_cache(util_ald_cache_t *cache) argument
419 util_ald_cache_fetch(util_ald_cache_t *cache, void *payload) argument
448 util_ald_cache_insert(util_ald_cache_t *cache, void *payload) argument
545 util_ald_cache_remove(util_ald_cache_t *cache, void *payload) argument
578 util_ald_cache_display_stats(request_rec *r, util_ald_cache_t *cache, char *name, char *id) argument
[all...]
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...]
/macosx-10.10.1/bind9-45.101/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.10.1/objc4-646/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.10.1/OpenSSL098-52/src/crypto/x509v3/
H A Dpcy_cache.c69 /* Set cache entry according to CertificatePolicies extension.
78 X509_POLICY_CACHE *cache = x->policy_cache; local
83 cache->data = sk_X509_POLICY_DATA_new(policy_data_cmp);
84 if (!cache->data)
97 if (cache->anyPolicy)
102 cache->anyPolicy = data;
104 else if (sk_X509_POLICY_DATA_find(cache->data, data) != -1)
109 else if (!sk_X509_POLICY_DATA_push(cache->data, data))
122 sk_X509_POLICY_DATA_pop_free(cache->data, policy_data_free);
123 cache
131 X509_POLICY_CACHE *cache; local
236 policy_cache_free(X509_POLICY_CACHE *cache) argument
261 policy_cache_find_data(const X509_POLICY_CACHE *cache, const ASN1_OBJECT *id) argument
[all...]
/macosx-10.10.1/tcl-105/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.10.1/hfs-285/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
505 CacheWrite( Cache_t *cache, Buf_t *buf, int age, uint32_t writeOptions ) argument
645 CacheRelease(Cache_t *cache, Buf_t *buf, int age) argument
731 CacheRemove(Cache_t *cache, Tag_t *tag) argument
776 CacheEvict(Cache_t *cache, Tag_t *tag) argument
800 CacheAllocBlock(Cache_t *cache) argument
822 CacheFreeBlock( Cache_t *cache, Tag_t *tag ) argument
922 CacheFlushRange( Cache_t *cache, uint64_t start, uint64_t len, int remove) argument
1000 CacheCopyDiskBlocks(Cache_t *cache, uint64_t from_offset, uint64_t to_offset, uint32_t len) argument
1109 CacheWriteBufferToDisk(Cache_t *cache, uint64_t offset, uint32_t write_len, u_char *buffer, uint32_t buf_len) argument
1222 CacheLookup(Cache_t *cache, uint64_t off, Tag_t **tag) argument
1307 CacheRawRead(Cache_t *cache, uint64_t off, uint32_t len, void *buf) argument
1341 CacheRawWrite(Cache_t *cache, uint64_t off, uint32_t len, void *buf) argument
1498 dumpCache(Cache_t *cache) argument
[all...]
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dctable.c5 /* cache manager
15 /* const void *ctable_locate(cache, key)
16 /* CTABLE *cache;
19 /* const void *ctable_refresh(cache, key)
20 /* CTABLE *cache;
23 /* const void *ctable_newcontext(cache, context)
24 /* CTABLE *cache;
27 /* void ctable_free(cache)
28 /* CTABLE *cache;
30 /* void ctable_walk(cache, actio
122 CTABLE *cache = (CTABLE *) mymalloc(sizeof(CTABLE)); local
140 ctable_locate(CTABLE *cache, const char *key) argument
182 ctable_refresh(CTABLE *cache, const char *key) argument
207 ctable_newcontext(CTABLE *cache, void *context) argument
226 ctable_free(CTABLE *cache) argument
242 ctable_walk(CTABLE *cache, void (*action) (const char *, const void *)) argument
291 CTABLE *cache; local
[all...]
/macosx-10.10.1/pyobjc-45/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.10.1/pyobjc-45/2.6/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.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/PyObjCTest/
H A Dtest_cvopengltexturecache.py25 rv, cache = CVOpenGLTextureCacheCreate(None, None, cglCtx, cglFmt, None, None)
27 self.assertIsInstance(cache, CVOpenGLTextureCacheRef)
29 v = CVOpenGLTextureCacheRetain(cache)
30 self.assertTrue(v is cache)
34 rv, texture = CVOpenGLTextureCacheCreateTextureFromImage(None, cache, img, None, None)
36 self.assertIsInstance(cache, CVOpenGLTextureRef)
38 CVOpenGLTextureCacheFlush(cache, 0)
/macosx-10.10.1/OpenLDAP-499.27/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.10.1/apache-793/httpd/modules/cache/
H A Dcache_storage.h39 int cache_remove_url(cache_request_rec *cache, request_rec *r);
40 int cache_create_entity(cache_request_rec *cache, request_rec *r,
42 int cache_select(cache_request_rec *cache, request_rec *r);
52 * @param cache cache_request_rec
55 int cache_invalidate(cache_request_rec *cache, request_rec *r);
/macosx-10.10.1/bind9-45.101/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
/macosx-10.10.1/bootp-298/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.10.1/vim-55/src/
H A Dconfigure4 auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache
/macosx-10.10.1/Heimdal-398.1.2/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.10.1/Libc-1044.1.2/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.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DApplicationCacheFrameContentView.css26 .content-view.application-cache-frame > .data-grid {

Completed in 173 milliseconds

1234567891011>>