Searched refs:namecache (Results 1 – 3 of 3) sorted by relevance
| /xnu-8020.121.3/bsd/sys/ |
| H A D | namei.h | 243 struct namecache { struct 244 TAILQ_ENTRY(namecache) nc_entry; /* chain of all entries */ 245 TAILQ_ENTRY(namecache) nc_child; /* chain of ncp's that are children of a vp */ 247 LIST_ENTRY(namecache) nc_link; /* chain of ncp's that 'name' a vp */ argument 248 TAILQ_ENTRY(namecache) nc_negentry; /* chain of ncp's that 'name' a vp */ 250 LIST_ENTRY(namecache) nc_hash; /* hash chain */ argument
|
| H A D | vnode_internal.h | 146 TAILQ_HEAD(, namecache) v_ncchildren; /* name cache entries that regard us as their parent */ 147 LIST_HEAD(, namecache) v_nclinks; /* name cache entries that name this vnode */
|
| /xnu-8020.121.3/bsd/vfs/ |
| H A D | vfs_cache.c | 112 ZONE_DEFINE_TYPE(namecache_zone, "namecache", struct namecache, ZC_NONE); 114 LIST_HEAD(nchashhead, namecache) * nchashtbl; /* Hash Table */ 122 TAILQ_HEAD(, namecache) nchead; /* chain of all name cache entries */ 123 TAILQ_HEAD(, namecache) neghead; /* chain of only negative cache entries */ 166 static void cache_delete(struct namecache *, int); 948 struct namecache *ncp; in vnode_update_identity() 1986 struct namecache *ncp; in cache_lookup_locked() 2065 struct namecache *ncp; in cache_lookup() 2237 struct namecache *ncp, *negp; in cache_enter_locked() 2328 struct namecache *p; in cache_enter_locked() [all …]
|