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

1 2 3 4 5 6 7 8 9

  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/ccache/
ccfns.c 28 * Dispatch methods for credentials cache code.
34 krb5_cc_get_name (krb5_context context, krb5_ccache cache)
36 return cache->ops->get_name(context, cache);
40 krb5_cc_gen_new (krb5_context context, krb5_ccache *cache)
42 return (*cache)->ops->gen_new(context, cache);
46 krb5_cc_initialize(krb5_context context, krb5_ccache cache,
49 return cache->ops->init(context, cache, principal)
    [all...]
  /onnv/onnv-gate/usr/src/common/openssl/crypto/x509v3/
pcy_cache.c 69 /* 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->data = NULL
131 X509_POLICY_CACHE *cache; local
    [all...]
pcy_map.c 78 static X509_POLICY_REF *policy_map_find(X509_POLICY_CACHE *cache, ASN1_OBJECT *id)
84 idx = sk_X509_POLICY_REF_find(cache->maps, &tmp);
87 return sk_X509_POLICY_REF_value(cache->maps, idx);
90 /* Set policy mapping entries in cache.
99 X509_POLICY_CACHE *cache = x->policy_cache; local
107 cache->maps = sk_X509_POLICY_REF_new(ref_cmp);
120 if (policy_map_find(cache, map->subjectDomainPolicy) != NULL)
127 data = policy_cache_find_data(cache, map->issuerDomainPolicy);
129 if (!data && !cache->anyPolicy)
136 cache->anyPolicy->flag
    [all...]
pcy_tree.c 79 const X509_POLICY_CACHE *cache; local
111 /* First setup policy cache in all certificates apart from the
112 * trust anchor. Note any bad cache results on the way. Also can
119 cache = policy_cache_set(x);
120 /* If cache NULL something bad happened: return immediately */
121 if (cache == NULL)
129 else if ((ret == 1) && !cache->data)
135 && (cache->explicit_skip != -1)
136 && (cache->explicit_skip < explicit_policy))
137 explicit_policy = cache->explicit_skip
526 const X509_POLICY_CACHE *cache; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/idmap/
idmap_cache.c 29 * This module provides the kernel cache.
114 kidmap_purge_sid2pid_cache(idmap_sid2pid_cache_t *cache, size_t limit);
117 kidmap_purge_pid2sid_cache(idmap_pid2sid_cache_t *cache, size_t limit);
180 kidmap_cache_create(idmap_cache_t *cache)
182 avl_create(&cache->sid2pid.tree, (avl_comp_fn)kidmap_compare_sid,
184 mutex_init(&cache->sid2pid.mutex, NULL, MUTEX_DEFAULT, NULL);
185 cache->sid2pid.purge_time = 0;
186 cache->sid2pid.head.flink = &cache->sid2pid.head;
187 cache->sid2pid.head.blink = &cache->sid2pid.head
    [all...]
kidmap_priv.h 87 * There is a cache for every mapping request because a group SID
100 kidmap_cache_create(idmap_cache_t *cache);
103 kidmap_cache_delete(idmap_cache_t *cache);
106 kidmap_cache_purge(idmap_cache_t *cache);
110 kidmap_cache_lookup_uidbysid(idmap_cache_t *cache, const char *sid_prefix,
114 kidmap_cache_lookup_gidbysid(idmap_cache_t *cache, const char *sid_prefix,
118 kidmap_cache_lookup_pidbysid(idmap_cache_t *cache, const char *sid_prefix,
122 kidmap_cache_lookup_sidbyuid(idmap_cache_t *cache, const char **sid_prefix,
126 kidmap_cache_lookup_sidbygid(idmap_cache_t *cache, const char **sid_prefix,
131 kidmap_cache_add_sid2uid(idmap_cache_t *cache, const char *sid_prefix
    [all...]
  /onnv/onnv-gate/usr/src/lib/libast/common/regex/
regcache.c 25 * regcomp() regex_t cache
32 #define CACHE 8 /* default # cached re's */
58 Cache_t** cache; member in struct:State_s
64 * flush the cache
73 if (matchstate.cache[i] && matchstate.cache[i]->flags)
75 matchstate.cache[i]->flags = 0;
76 regfree(&matchstate.cache[i]->re);
96 * 0 pattern flushes the cache and reflags>0 extends cache
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/
ExpireFile.pm 20 my $cache = $args{HASH} || {};
21 bless {ARGS => \%args, C => $cache} => $package;
28 my $cache = $self->{C};
30 $cache->{"C$key"} = $data;
31 $cache->{"T$key"} = $cur_date;
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/hfs/
cache.c 37 #include "cache.h"
111 hfsc_delete_cache(HfsCPrivateCache* cache)
113 hfsc_delete_cachetable(cache->table_list);
114 ped_free(cache->linked_ref);
115 ped_free(cache);
119 hfsc_cache_add_extent(HfsCPrivateCache* cache, uint32_t start, uint32_t length,
126 PED_ASSERT(idx < cache->linked_ref_size, return NULL);
128 for (ext = cache->linked_ref[idx];
143 if ( cache->last_table->table_first_free
144 == cache->last_table->table_size )
    [all...]
cache.h 28 /* CR => CACHE REF */
57 /* Access read only from outside cache.c */
70 /* Internaly used by cache.c for custom memory managment only */
80 /* Internaly used by cache.c for custom memory managment
81 and cache handling only */
97 hfsc_delete_cache(HfsCPrivateCache* cache);
100 hfsc_cache_add_extent(HfsCPrivateCache* cache, uint32_t start, uint32_t length,
105 hfsc_cache_search_extent(HfsCPrivateCache* cache, uint32_t start);
108 hfsc_cache_move_extent(HfsCPrivateCache* cache, uint32_t old_start,
112 hfsc_cache_needed_buffer(HfsCPrivateCache* cache)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libnsl/nis/cache/
cache_api.cc 28 /* The C interface to directory cache class functions */
60 * Initializes the client cache. Allocates the global data strucuture
61 * NisSharedCache which is used by the other cache routines.
62 * We return a copy of the cache variable so that it will remain
63 * constant for each thread. We can change the cache variable
64 * from the shared cache to the local cache, but we must not
65 * delete the cache because another thread might still be using it
66 * (except in this routine if we create a cache with an error).
70 __nis_CacheInit(NisCache **cache)
220 NisCache *cache; local
241 NisCache *cache; local
273 NisCache *cache; local
309 NisCache *cache; local
361 NisCache *cache; local
381 NisCache *cache; local
440 NisCache *cache; local
464 NisCache *cache; local
484 NisCache *cache; local
501 NisCache *cache; local
521 NisCache *cache; local
538 NisCache *cache; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libldap5/sources/ldap/common/
memcache.c 30 * memcache.c - routines that implement an in-memory cache.
64 /* Size used for calculation if given size of cache is 0 */
191 static int memcache_validate_basedn(LDAPMemCache *cache, const char *basedn);
195 static int memcache_adj_size(LDAPMemCache *cache, unsigned long size,
197 static int memcache_free_entry(LDAPMemCache *cache, ldapmemcacheRes *pRes);
198 static int memcache_expired(LDAPMemCache *cache, ldapmemcacheRes *pRes,
200 static int memcache_add_to_list(LDAPMemCache *cache, ldapmemcacheRes *pRes,
204 static int memcache_free_from_list(LDAPMemCache *cache, ldapmemcacheRes *pRes,
215 static int memcache_access(LDAPMemCache *cache, int mode,
218 static void memcache_print_list( LDAPMemCache *cache, int index )
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ldapcachemgr/
cachemgr_parse.c 81 cachemgr_set_ttl(ldap_stat_t *cache, char *name, int value)
85 if (cache == NULL)
88 result = cachemgr_set_integer(&(cache->ldap_ttl),
  /onnv/onnv-gate/usr/src/cmd/print/ppdmgr/
Makefile 26 MANIFEST= ppd-cache-update.xml
27 SVCMETHOD= ppd-cache-update
  /onnv/onnv-gate/usr/src/pkgdefs/SUNWppmr/
preinstall 39 # If we are upgrading a system with ppd-cache-update service already
42 if [ ! -f $MANIFESTDIR/ppd-cache-update.xml ] ; then
  /onnv/onnv-gate/usr/src/cmd/nscd/
nscd_cfgdef.h 38 #include "cache.h"
72 nscd_cfg_cache_t cache; member in struct:__anon989
80 nscd_cfg_stat_cache_t cache; member in struct:__anon990
89 nscd_cfg_stat_cache_t cache; member in struct:__anon991
100 nscd_cfg_global_cache_t cache; member in struct:__anon992
138 { 0, "svc:/system/name-service-cache:default"},
351 "cache-hit-threads",
446 "param-group-global-cache",
451 cache,
458 "global-enable-cache",
    [all...]
  /onnv/onnv-gate/usr/src/lib/libtecla/common/
expand.c 75 DirNode *head; /* The head of the list of used and unused cache nodes */
77 DirNode *tail; /* The tail of the list of unused cache nodes */
81 * Specify how many directory cache nodes to allocate at a time.
105 DirCache cache; /* The cache of directory reader objects */ member in struct:ExpandFile
180 ef->cache.mem = NULL;
181 ef->cache.head = NULL;
182 ef->cache.next = NULL;
183 ef->cache.tail = NULL;
203 * Allocate a freelist for allocating directory cache nodes
692 DirCache *cache = &ef->cache; local
776 DirCache *cache = &ef->cache; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/rpcsvc/
nisplus 33 cache=`/usr/bin/svcprop -p application_ovr/clear_cache $SMF_FMRI \
36 cache=`/usr/bin/svcprop -p application/clear_cache $SMF_FMRI \
40 [ "$cache" = "true" ] && cachemgr_flags="$cachemgr_flags -i"
  /onnv/onnv-gate/usr/src/cmd/rcm_daemon/common/
svm_rcm.c 48 * builds a cache of all of the SVM resources and their dependencies. Each
50 * function. When the cache is built each SVM resource is registered with
52 * ensure that the caching in libmeta will not conflict with the cache
56 * framework will call the appropriate routine in this module. The cache
62 * The cache is protected by a mutex
74 #define MSG_NORECACHE gettext("SVM: WARNING: couldn't re-cache.")
76 #define MSG_CACHEFAIL gettext("SVM: can't malloc cache")
148 /* Cache */
149 typedef struct cache { struct
152 uint32_t registered; /* cache regsitered *
1797 cache_t *cache; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/initpkg/init.d/
nscd 32 FMRI=system/name-service-cache:default
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/t/
expire.t 20 tie my %cache => 'Memoize::ExpireTest';
22 SCALAR_CACHE => [HASH => \%cache],
expmod_n.t 25 tie my %cache => 'Memoize::Expire', NUM_USES => 2;
27 SCALAR_CACHE => [HASH => \%cache],
errors.t 32 tie my %cache => $mod, @{$args{$mod}};
33 memoize(sub {}, LIST_CACHE => [HASH => \%cache ]);
  /onnv/onnv-gate/usr/src/uts/sun4u/sys/
mem_cache_ioctl.h 47 cache_id_t cache; member in struct:cache_info32
  /onnv/onnv-gate/usr/src/uts/sparc/sys/
cpu.h 54 * Cache defines
61 #define CACHE_VAC 0x01 /* Virtual addressed cache */
62 #define CACHE_VTAG 0x02 /* Virtual tagged cache */
63 #define CACHE_PAC 0x04 /* Physical addressed cache */
64 #define CACHE_PTAG 0x08 /* Physical tagged cache */
65 #define CACHE_WRITEBACK 0x10 /* Writeback cache */
66 #define CACHE_IOCOHERENT 0x20 /* I/O coherent cache */
68 extern int cache;

Completed in 2809 milliseconds

1 2 3 4 5 6 7 8 9