Home | History | Annotate | Download | only in restore

Lines Matching defs:inotab

74 struct inotab {
75 struct inotab *t_next;
80 static struct inotab *inotab[HASHSIZE];
127 static struct inotab *allocinotab(struct context *, long);
130 static struct inotab *inotablookup(ino_t);
150 struct inotab *itp;
231 struct inotab *itp;
319 struct inotab *itp;
536 struct inotab *itp;
715 struct inotab *itp;
759 struct inotab *itp;
771 static struct inotab *
774 struct inotab *itp;
777 itp = calloc(1, sizeof(struct inotab));
780 itp->t_next = inotab[INOHASH(ctxp->ino)];
781 inotab[INOHASH(ctxp->ino)] = itp;
808 static struct inotab *
811 struct inotab *itp;
813 for (itp = inotab[INOHASH(ino)]; itp != NULL; itp = itp->t_next)