Lines Matching refs:inotab
64 struct inotab { struct
65 struct inotab *t_next; argument
70 static struct inotab *inotab[HASHSIZE]; argument
108 static struct inotab *allocinotab(struct context *, long);
110 static struct inotab *inotablookup(ino_t);
129 struct inotab *itp; in extractdirs()
212 struct inotab *itp; in treescan()
301 struct inotab *itp; in searchdir()
491 struct inotab *itp; in rst_opendir()
671 struct inotab *itp; in genliteraldir()
715 struct inotab *itp; in inodetype()
727 static struct inotab *
730 struct inotab *itp; in allocinotab()
733 itp = calloc(1, sizeof(struct inotab)); in allocinotab()
736 itp->t_next = inotab[INOHASH(ctxp->ino)]; in allocinotab()
737 inotab[INOHASH(ctxp->ino)] = itp; in allocinotab()
764 static struct inotab *
767 struct inotab *itp; in inotablookup()
769 for (itp = inotab[INOHASH(ino)]; itp != NULL; itp = itp->t_next) in inotablookup()