Searched refs:cachenode (Results 1 – 4 of 4) sorted by relevance
/illumos-gate/usr/src/ucbcmd/ls/ |
H A D | ls.c | 774 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 D | ls.c | 249 static struct cachenode *findincache(struct cachenode **, long); 2196 struct cachenode { /* this struct must be zeroed before using */ struct 2197 struct cachenode *lesschild; /* subtree whose entries < val */ argument 2198 struct cachenode *grtrchild; /* subtree whose entries > val */ argument 2203 static struct cachenode *names, *groups; argument 2204 static struct cachenode *user_sids, *group_sids; 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() [all …]
|
/illumos-gate/usr/src/cmd/praudit/ |
H A D | format.c | 78 static struct cachenode *findincache(struct cachenode **, long); 86 struct cachenode { /* this struct must be zeroed before using */ struct 87 struct cachenode *lesschild; /* subtree whose entries < val */ argument 88 struct cachenode *grtrchild; /* subtree whose entries > val */ argument 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() [all …]
|
/illumos-gate/usr/src/cmd/tar/ |
H A D | tar.c | 6235 typedef struct cachenode { /* this struct must be zeroed before using */ struct 6236 struct cachenode *next; /* next in hash chain */ argument
|