Home
last modified time | relevance | path

Searched refs:cachenode (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/ucbcmd/ls/
H A Dls.c774 static struct cachenode { /* this struct must be zeroed before using */ struct
775 struct cachenode *lesschild; /* subtree whose entries < val */ argument
776 struct cachenode *grtrchild; /* subtree whose entries > val */ argument
782 static struct cachenode * argument
783 findincache(struct cachenode **head, id_t val) in findincache()
785 register struct cachenode **parent = head; in findincache()
786 register struct cachenode *c = *parent; in findincache()
802 *parent = c = (struct cachenode *)calloc(1, sizeof (struct cachenode)); in findincache()
810 struct cachenode *c; in getname()
828 struct cachenode *c; in getgroup()
/illumos-gate/usr/src/cmd/ls/
H A Dls.c249 static struct cachenode *findincache(struct cachenode **, long);
2203 static struct cachenode *names, *groups; argument
2206 static struct cachenode *
2207 findincache(struct cachenode **head, long val) in findincache()
2209 struct cachenode **parent = head; in findincache()
2210 struct cachenode *c = *parent; in findincache()
2226 c = calloc(1, sizeof (struct cachenode)); in findincache()
2247 struct cachenode *c; in getname()
2283 struct cachenode *c; in getgroup()
2317 struct cachenode *c; in getusid()
[all …]
/illumos-gate/usr/src/cmd/praudit/
H A Dformat.c78 static struct cachenode *findincache(struct cachenode **, long);
93 static struct cachenode *names, *groups; argument
95 static struct cachenode *
96 findincache(struct cachenode **head, long val) in findincache()
98 struct cachenode **parent = head; in findincache()
99 struct cachenode *c = *parent; in findincache()
115 c = calloc(1, sizeof (struct cachenode)); in findincache()
133 struct cachenode *c; in getname()
160 struct cachenode *c; in getgroup()
187 struct cachenode *c; in loadnames()
[all …]
/illumos-gate/usr/src/cmd/tar/
H A Dtar.c6234 typedef struct cachenode { /* this struct must be zeroed before using */ struct
6235 struct cachenode *next; /* next in hash chain */ argument