Symbol: ncache_t
usr/src/cmd/mdb/common/modules/mdb_ks/mdb_ks.c
101
#define MDB_DNLC_NCACHE_SZ(ncp) (sizeof (ncache_t) + (ncp)->namlen)
usr/src/cmd/mdb/common/modules/mdb_ks/mdb_ks.c
104
static ncache_t **dnlc_hash; /* mdbs hash array of dnlc entries */
usr/src/cmd/mdb/common/modules/mdb_ks/mdb_ks.c
163
ncache_t *ncp, *next;
usr/src/cmd/mdb/common/modules/mdb_ks/mdb_ks.c
179
mdb_free(dnlc_hash, MDB_DNLC_HSIZE * sizeof (ncache_t *));
usr/src/cmd/mdb/common/modules/mdb_ks/mdb_ks.c
239
dnlc_hash = mdb_zalloc(MDB_DNLC_HSIZE * sizeof (ncache_t *), UM_SLEEP);
usr/src/cmd/mdb/common/modules/mdb_ks/mdb_ks.c
245
ncache_t *ncp; /* name cache pointer */
usr/src/cmd/mdb/common/modules/mdb_ks/mdb_ks.c
251
ncache_t nc; /* name cache entry */
usr/src/cmd/mdb/common/modules/mdb_ks/mdb_ks.c
275
if (mdb_vread(&nc, sizeof (ncache_t), nc_va) == -1) {
usr/src/cmd/mdb/common/modules/mdb_ks/mdb_ks.c
345
ncache_t *ent;
usr/src/cmd/mdb/common/modules/mdb_ks/mdb_ks.c
491
ncache_t *ent;
usr/src/uts/common/fs/dnlc.c
1002
ncache_t *ncp;
usr/src/uts/common/fs/dnlc.c
1035
} while (hp->hash_next == (ncache_t *)hp && hp != start_hp);
usr/src/uts/common/fs/dnlc.c
1038
if (hp->hash_next == (ncache_t *)hp) {
usr/src/uts/common/fs/dnlc.c
1044
for (cnt = 0, ncp = hp->hash_prev; ncp != (ncache_t *)hp;
usr/src/uts/common/fs/dnlc.c
1069
if (hp->hash_next == (ncache_t *)hp) {
usr/src/uts/common/fs/dnlc.c
238
(ncp)->hash_prev = (ncache_t *)(hp); \
usr/src/uts/common/fs/dnlc.c
327
static ncache_t *dnlc_get(uchar_t namlen);
usr/src/uts/common/fs/dnlc.c
328
static ncache_t *dnlc_search(vnode_t *dp, const char *name, uchar_t namlen,
usr/src/uts/common/fs/dnlc.c
382
hp->hash_next = (ncache_t *)hp;
usr/src/uts/common/fs/dnlc.c
383
hp->hash_prev = (ncache_t *)hp;
usr/src/uts/common/fs/dnlc.c
439
ncache_t *ncp;
usr/src/uts/common/fs/dnlc.c
505
ncache_t *ncp;
usr/src/uts/common/fs/dnlc.c
506
ncache_t *tcp;
usr/src/uts/common/fs/dnlc.c
587
ncache_t *ncp;
usr/src/uts/common/fs/dnlc.c
608
for (ncp = hp->hash_next; ncp != (ncache_t *)hp;
usr/src/uts/common/fs/dnlc.c
619
ncache_t *next = ncp->hash_next;
usr/src/uts/common/fs/dnlc.c
620
ncache_t *prev = ncp->hash_prev;
usr/src/uts/common/fs/dnlc.c
625
ncp->hash_prev = (ncache_t *)hp;
usr/src/uts/common/fs/dnlc.c
668
ncache_t *ncp;
usr/src/uts/common/fs/dnlc.c
700
ncache_t *ncp;
usr/src/uts/common/fs/dnlc.c
715
while (ncp != (ncache_t *)nch) {
usr/src/uts/common/fs/dnlc.c
716
ncache_t *np;
usr/src/uts/common/fs/dnlc.c
735
if (ncp != (ncache_t *)nch) {
usr/src/uts/common/fs/dnlc.c
749
ncache_t *ncp;
usr/src/uts/common/fs/dnlc.c
768
while (ncp != (ncache_t *)nch) {
usr/src/uts/common/fs/dnlc.c
769
ncache_t *np;
usr/src/uts/common/fs/dnlc.c
796
if (ncp != (ncache_t *)nch) {
usr/src/uts/common/fs/dnlc.c
812
ncache_t *ncp;
usr/src/uts/common/fs/dnlc.c
828
while (ncp != (ncache_t *)nch) {
usr/src/uts/common/fs/dnlc.c
829
ncache_t *np;
usr/src/uts/common/fs/dnlc.c
860
if (ncp != (ncache_t *)nch) {
usr/src/uts/common/fs/dnlc.c
883
ncache_t *ncp;
usr/src/uts/common/fs/dnlc.c
900
if (hp->hash_next == (ncache_t *)hp)
usr/src/uts/common/fs/dnlc.c
904
ncp != (ncache_t *)hp;
usr/src/uts/common/fs/dnlc.c
911
if (ncp != (ncache_t *)hp) {
usr/src/uts/common/fs/dnlc.c
929
static ncache_t *
usr/src/uts/common/fs/dnlc.c
933
ncache_t *ncp;
usr/src/uts/common/fs/dnlc.c
937
for (ncp = hp->hash_next; ncp != (ncache_t *)hp; ncp = ncp->hash_next) {
usr/src/uts/common/fs/dnlc.c
971
static ncache_t *
usr/src/uts/common/fs/dnlc.c
974
ncache_t *ncp;
usr/src/uts/common/sys/dnlc.h
91
#define NCACHE_SIZE(namelen) offsetof(ncache_t, name) + (namelen)
usr/src/uts/common/sys/dnlc.h
97
ncache_t *hash_next;
usr/src/uts/common/sys/dnlc.h
98
ncache_t *hash_prev;