• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sbin/restore/

Lines Matching refs:ino

60 listfile(char *name, ino_t ino, int type)
64 if (TSTINO(ino, dumpmap) == 0)
67 fprintf(stdout, "%10ju\t%s\n", (uintmax_t)ino, name);
76 addfile(char *name, ino_t ino, int type)
82 if (TSTINO(ino, dumpmap) == 0) {
86 if (ino == UFS_WINO && command == 'i' && !vflag)
89 (void) sprintf(buf, "./%ju", (uintmax_t)ino);
92 (void) genliteraldir(name, ino);
96 ep = lookupino(ino);
104 ep = addentry(name, ino, type);
117 deletefile(char *name, ino_t ino, int type)
122 if (TSTINO(ino, dumpmap) == 0)
208 nodeupdates(char *name, ino_t ino, int type)
228 if (TSTINO(ino, dumpmap))
246 ip = lookupino(ino);
334 ep = addentry(name, ino, type);
373 ep = addentry(name, ino, type|LINK);
388 ep = addentry(name, ino, type|LINK);
423 for (ip = lookupino(ino); ip != NULL; ip = ip->e_links) {
429 ip = addentry(name, ino, type);
438 ip = addentry(name, ino, type);
464 name, (uintmax_t)ino);
606 while (curfile.ino < maxino) {
615 while (first < curfile.ino) {
630 if (first != curfile.ino) {
632 (uintmax_t)first, (uintmax_t)curfile.ino);
636 ep = lookupino(curfile.ino);
694 if (curfile.ino == maxino)
696 if((ep = lookupino(curfile.ino)) != NULL &&
708 * if there are no further volumes available (curfile.ino
711 if (curfile.ino > last && curfile.ino < maxino && volno > 1) {
723 if (curfile.ino < maxino) {
724 next = lowerbnd(curfile.ino);
725 while (next > curfile.ino && volno == curvol)
750 while (next < curfile.ino) {
762 if (next == curfile.ino && next <= last) {
841 verifyfile(char *name, ino_t ino, int type)
851 np = lookupino(ino);
858 panic("missing inumber %ju\n", (uintmax_t)ino);