Lines Matching defs:inotab
28 struct inotab {
29 struct inotab *t_next;
33 struct inotab *t_xattr;
35 static struct inotab *inotab[HASHSIZE];
36 static struct inotab *xattrlist = NULL;
91 static struct inotab *allocinotab(ino_t, struct dinode *, off64_t);
93 static struct inotab *inotablookup(ino_t);
104 static struct inotab *allocinotab();
106 static struct inotab *inotablookup();
121 struct inotab *itp;
228 struct inotab *itp;
305 struct inotab *itp;
387 struct inotab *itp;
541 struct inotab *itp;
792 struct inotab *itp;
849 struct inotab *itp;
861 static struct inotab *
864 struct inotab *itp;
866 itp = (struct inotab *)calloc(1, sizeof (*itp));
872 itp->t_next = inotab[INOHASH(ino)];
873 inotab[INOHASH(ino)] = itp;
914 static struct inotab *
917 struct inotab *itp;
919 for (itp = inotab[INOHASH(ino)]; itp != NULL; itp = itp->t_next)
922 return ((struct inotab *)0);