HomeSort by relevance Sort by last modified time
    Searched refs:cache (Results 1 - 25 of 2022) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sfw/usr/src/cmd/gutenprint/gutenprint-5.2.4/src/main/
curve-cache.c 2 * "$Id: curve-cache.c,v 1.6 2005/10/18 02:08:17 rlk Exp $"
35 #include <gutenprint/curve-cache.h>
43 stp_curve_free_curve_cache(stp_cached_curve_t *cache)
45 if (cache->curve)
46 stp_curve_destroy(cache->curve);
47 cache->curve = NULL;
48 cache->d_cache = NULL;
49 cache->s_cache = NULL;
50 cache->count = 0;
54 stp_curve_cache_curve_data(stp_cached_curve_t *cache)
    [all...]
  /sfw/usr/src/cmd/bind/bind-9.6.1-P1/bin/tests/system/glue/
setup.sh 20 cd ns1 && cp -f cache.in cache
  /sfw/usr/src/cmd/net-snmp/net-snmp-5.4.1/agent/helpers/
cache_handler.c 16 static int _cache_load( netsnmp_cache *cache );
24 * Maintains a cache of data for use by lower level handlers.
27 * (according to the timeout for that particular cache) and calls the
32 * always return true, and thus the cache will be reloaded for every
37 * cache.
39 * The load_cache route should return a negative number if the cache
43 * Several flags can be set to affect the operations on the cache.
47 * the lower mib handler using the cache has maintained cache consistency.
52 * valid cache
122 netsnmp_cache *cache; local
140 netsnmp_cache *cache = NULL; local
180 netsnmp_cache *cache = (netsnmp_cache *)clientargs; local
281 netsnmp_cache *cache = NULL; local
405 netsnmp_cache *cache = netsnmp_cache_reqinfo_extract(reqinfo, name); local
425 netsnmp_cache *cache = NULL; local
577 netsnmp_cache *cache = NULL; local
    [all...]
  /sfw/usr/src/cmd/gutenprint/gutenprint-5.2.4/include/gutenprint/
curve-cache.h 2 * "$Id: curve-cache.h,v 1.2 2005/10/18 02:08:16 rlk Exp $"
25 * @file gutenprint/curve-cache.h
51 extern void stp_curve_free_curve_cache(stp_cached_curve_t *cache);
53 extern void stp_curve_cache_curve_data(stp_cached_curve_t *cache);
55 extern stp_curve_t *stp_curve_cache_get_curve(stp_cached_curve_t *cache);
57 extern void stp_curve_cache_curve_invalidate(stp_cached_curve_t *cache);
59 extern void stp_curve_cache_set_curve(stp_cached_curve_t *cache,
62 extern void stp_curve_cache_set_curve_copy(stp_cached_curve_t *cache,
65 extern size_t stp_curve_cache_get_count(stp_cached_curve_t *cache);
67 extern const unsigned short *stp_curve_cache_get_ushort_data(stp_cached_curve_t *cache);
    [all...]
  /sfw/usr/src/cmd/mysql/mysql-4.0.24/mysys/
mf_cache.c 17 /* Open a temporary file and cache it with io_cache. Delete it on close */
30 static my_bool cache_remove_open_tmp(IO_CACHE *cache __attribute__((unused)),
39 if (!(cache->file_name=
42 my_close(cache->file,MYF(0));
43 cache->file = -1;
47 memcpy(cache->file_name,name,length);
56 ** Return 0 if cache is inited ok
61 my_bool open_cached_file(IO_CACHE *cache, const char* dir, const char *prefix,
65 cache->dir= dir ? my_strdup(dir,MYF(cache_myflags & MY_WME)) : (char*) 0;
66 cache->prefix= (prefix ? my_strdup(prefix,MYF(cache_myflags & MY_WME))
    [all...]
  /sfw/usr/src/cmd/mysql-5-1/mysql-5.1.30-dtrace/mysys/
mf_cache.c 16 /* Open a temporary file and cache it with io_cache. Delete it on close */
29 static my_bool cache_remove_open_tmp(IO_CACHE *cache __attribute__((unused)),
38 if (!(cache->file_name=
41 my_close(cache->file,MYF(0));
42 cache->file = -1;
46 memcpy(cache->file_name,name,length);
55 ** Return 0 if cache is inited ok
60 my_bool open_cached_file(IO_CACHE *cache, const char* dir, const char *prefix,
64 cache->dir= dir ? my_strdup(dir,MYF(cache_myflags & MY_WME)) : (char*) 0;
65 cache->prefix= (prefix ? my_strdup(prefix,MYF(cache_myflags & MY_WME))
    [all...]
  /sfw/usr/src/cmd/mysql-5-0/mysql-5.0.86/mysys/
mf_cache.c 16 /* Open a temporary file and cache it with io_cache. Delete it on close */
29 static my_bool cache_remove_open_tmp(IO_CACHE *cache __attribute__((unused)),
38 if (!(cache->file_name=
41 my_close(cache->file,MYF(0));
42 cache->file = -1;
46 memcpy(cache->file_name,name,length);
55 ** Return 0 if cache is inited ok
60 my_bool open_cached_file(IO_CACHE *cache, const char* dir, const char *prefix,
64 cache->dir= dir ? my_strdup(dir,MYF(cache_myflags & MY_WME)) : (char*) 0;
65 cache->prefix= (prefix ? my_strdup(prefix,MYF(cache_myflags & MY_WME))
    [all...]
  /sfw/usr/src/cmd/gcc/gcc-3.4.3/libobjc/
hash.c 37 #define FULLNESS(cache) \
38 ((((cache)->size * 75) / 100) <= (cache)->used)
39 #define EXPANSION(cache) \
40 ((cache)->size * 2)
46 cache_ptr cache; local
52 /* Allocate the cache structure. calloc insures
54 cache = (cache_ptr) objc_calloc (1, sizeof (struct cache));
55 assert (cache);
    [all...]
  /sfw/usr/src/lib/logilab-common/logilab-common-0.40.0/test/
unittest_cache.py 1 # unit tests for the cache module
4 from logilab.common.cache import Cache
9 self.cache = Cache(5)
14 self.cache[1] = 'foo'
15 self.assertEqual(self.cache[1], 'foo', "1:foo is not in cache")
16 self.assertEqual(len(self.cache._usage), 1)
17 self.assertEqual(self.cache._usage[-1], 1
    [all...]
  /sfw/usr/src/lib/mpfr/mpfr-2.4.1/
cache.c 1 /* mpfr_cache -- cache interface for multi-precision const in MPFR.
26 mpfr_init_cache (mpfr_cache_t cache, int (*func)(mpfr_ptr, mp_rnd_t))
28 MPFR_PREC (cache->x) = 0; /* Invalid prec to detect that the cache is not
30 cache->func = func;
34 mpfr_clear_cache (mpfr_cache_t cache)
36 if (MPFR_PREC (cache->x) != 0)
37 mpfr_clear (cache->x);
38 MPFR_PREC (cache->x) = 0;
42 mpfr_cache (mpfr_ptr dest, mpfr_cache_t cache, mp_rnd_t rnd
    [all...]
  /sfw/usr/src/cmd/subversion/subversion-1.6.5/subversion/libsvn_subr/
cache.c 2 * cache.c: cache interface for Subversion
19 #include "cache.h"
22 svn_cache__set_error_handler(svn_cache__t *cache,
27 cache->error_handler = handler;
28 cache->error_baton = baton;
36 handle_error(const svn_cache__t *cache,
40 if (err && cache->error_handler)
41 err = (cache->error_handler)(err, cache->error_baton, pool)
    [all...]
cache-inprocess.c 2 * cache-inprocess.c: in-memory caching for Subversion
27 #include "cache.h"
29 /* The (internal) cache object. */
31 /* Maps from a key (of size CACHE->KLEN) to a struct cache_entry. */
35 /* Used to copy values in and out of the cache. */
41 /* Number of cache entries stored on each page. Must be at least 1. */
65 /* A lock for intra-process synchronization to the cache, or NULL if
66 * the cache's creator doesn't feel the cache needs to be
72 /* A cache page; all items on the page are allocated from the sam
210 inprocess_cache_t *cache = cache_void; local
267 inprocess_cache_t *cache = cache_void; local
395 inprocess_cache_t *cache = cache_void; local
423 inprocess_cache_t *cache = apr_pcalloc(pool, sizeof(*cache)); local
    [all...]
  /sfw/usr/src/cmd/gcc/gcc-3.4.3/gcc/testsuite/g++.old-deja/g++.other/
lookup1.C 8 char cache[blah]; member in struct:bar
  /sfw/usr/src/lib/jdtcore/plugins/org.eclipse.team.core/src/org/eclipse/team/core/
ICacheListener.java 15 * Listener that, when registered with a cache, gets invoked
16 * when the cache is disposed.
25 * The given cache has been disposed.
26 * @param cache the cache that was disposed
28 void cacheDisposed(ICache cache);
  /sfw/usr/src/cmd/samba/samba-3.0.37/source/lib/replace/
autogen.sh 3 rm -rf autom4te.cache
9 rm -rf autom4te.cache
  /sfw/usr/src/cmd/bind/bind-9.6.1-P1/lib/dns/include/dns/
cache.h 18 /* $Id: cache.h,v 1.26 2007/06/19 23:47:16 tbox Exp $ */
27 /*! \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.
69 * Create a new DNS cache.
77 * cache will take place.
83 *\li '*cachep' is attached to the newly created cache
92 dns_cache_attach(dns_cache_t *cache, dns_cache_t **targetp);
94 * Attach *targetp to cache
    [all...]
  /sfw/usr/src/cmd/apache2/httpd-2.2.14/modules/ldap/
util_ldap_cache.h 30 * LDAP Cache Manager
37 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 *
    [all...]
util_ldap_cache_mgr.c 18 * util_ldap_cache_mgr.c: LDAP cache manager things
77 void util_ald_free(util_ald_cache_t *cache, const void *ptr)
80 if (cache->rmm_addr) {
83 apr_rmm_free(cache->rmm_addr, apr_rmm_offset_get(cache->rmm_addr, (void *)ptr));
87 /* Cache shm is not used */
96 void *util_ald_alloc(util_ald_cache_t *cache, unsigned long size)
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
274 util_ald_cache_t *cache; local
    [all...]
  /sfw/usr/src/lib/memcached/memcached-1.4.1/
cache.c 10 #include "cache.h"
56 void cache_destroy(cache_t *cache) {
57 while (cache->freecurr > 0) {
58 void *ptr = cache->ptr[--cache->freecurr];
59 if (cache->destructor) {
60 cache->destructor(get_object(ptr), NULL);
64 free(cache->name);
65 free(cache->ptr);
66 pthread_mutex_destroy(&cache->mutex)
    [all...]
  /sfw/usr/src/cmd/bind/bind-9.6.1-P1/lib/dns/
cache.c 18 /* $Id: cache.c,v 1.80.50.3 2009/05/06 23:34:30 jinmei Exp $ */
31 #include <dns/cache.h>
44 #define VALID_CACHE(cache) ISC_MAGIC_VALID(cache, CACHE_MAGIC)
65 * cache cleaning.
86 * Accesses to a cache cleaner object are synchronized through
87 * task/event serialization, or locked from the cache object.
98 dns_cache_t *cache; member in struct:cache_cleaner
111 isc_boolean_t overmem; /*% The cache is in an overmem state. */
116 * The actual cache object
175 dns_cache_t *cache; local
350 dns_cache_t *cache; local
918 dns_cache_t *cache = arg; local
980 dns_cache_t *cache = event->ev_arg; local
    [all...]
  /sfw/usr/src/cmd/freeipmi/freeipmi-0.7.7/libfreeipmi/src/sdr-cache/
Makefile.am 8 ipmi-sdr-cache-common.h \
9 ipmi-sdr-cache-defs.h
23 ipmi-sdr-cache.c \
24 ipmi-sdr-cache-common.c \
25 ipmi-sdr-cache-create.c \
26 ipmi-sdr-cache-delete.c \
27 ipmi-sdr-cache-read.c
  /sfw/usr/src/cmd/clisp/clisp-2.47/src/
cfgsunux.lisp 8 (let ((cache nil))
10 (if cache cache
11 (setq cache
16 (let ((cache nil))
18 (if cache cache
19 (setq cache
cfgunix.lisp 8 (let ((cache nil))
10 (if cache cache
11 (setq cache
16 (let ((cache nil))
18 (if cache cache
19 (setq cache
  /sfw/usr/src/cmd/simplewbem/cimple-1.2.4/src/cimple/tests/cache/
main.cpp 27 #include <cimple/Cache.h>
45 // Create cache.
48 Cache* cache = Cache::create(argv[1]); local
49 assert(cache != 0);
  /sfw/usr/src/cmd/areca/areca-7.1/build/classes/com/application/areca/cache/
EvictionManager.class 

Completed in 3449 milliseconds

1 2 3 4 5 6 7 8 91011>>