Searched defs:inodesc (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/sbin/fsck_lfs/ |
H A D | fsck.h | 90 struct inodesc { struct 92 int (*id_func) (struct inodesc *); /* function to be applied to argument 94 ino_t id_number; /* inode number described */ 95 ino_t id_parent; /* for DATA nodes, their parent */ 96 daddr_t id_blkno; /* current block number being examined */ 97 daddr_t id_lblkno; /* current logical block number */ 98 int id_numfrags; /* number of frags contained in block */ 99 off_t id_filesize; /* for DATA nodes, the size of the directory */ 100 int id_loc; /* for DATA nodes, current location in dir */ 101 long long id_entryno; /* for DATA nodes, current entry number */ [all …]
|
/netbsd-src/sbin/fsck_ext2fs/ |
H A D | fsck.h | 118 struct inodesc { struct 121 (struct inodesc *); argument 122 ino_t id_number; /* inode number described */ 123 ino_t id_parent; /* for DATA nodes, their parent */ 124 daddr_t id_blkno; /* current block number being examined */ 125 int id_numfrags; /* number of frags contained in block */ 126 quad_t id_filesize; /* for DATA nodes, the size of the directory */ 127 int id_loc; /* for DATA nodes, current location in dir */ 128 int id_entryno; /* for DATA nodes, current entry number */ 129 struct ext2fs_direct *id_dirp; /* for DATA nodes, ptr to current entry */ [all …]
|
/netbsd-src/sbin/fsck_ffs/ |
H A D | fsck.h | 183 struct inodesc { struct 186 (struct inodesc *); argument 187 ino_t id_number; /* inode number described */ 188 ino_t id_parent; /* for DATA nodes, their parent */ 189 daddr_t id_blkno; /* current block number being examined */ 190 int id_numfrags; /* number of frags contained in block */ 191 int64_t id_filesize; /* for DATA nodes, the size of the directory */ 192 int id_loc; /* for DATA nodes, current location in dir */ 193 int64_t id_entryno; /* for DATA nodes, current entry number */ 194 struct direct *id_dirp; /* for DATA nodes, ptr to current entry */ [all …]
|