Lines Matching defs:inode
301 /* Dump the requested inode(s) */
320 * Here we dump a list of all blocks allocated by this inode. We follow
324 dump_whole_ufs1_inode(ino_t inode, int level)
336 * Read the inode from disk/cache.
338 if (getinode(&disk, &dp, inode) == -1)
343 return; /* inode not in use */
347 * Dump the main inode structure.
349 snprintf(comment, sizeof(comment), "Inode 0x%08jx", (uintmax_t)inode);
374 (uintmax_t)inode);
390 (uintmax_t)inode);
404 "Inode 0x%08jx: indirect 1->%d", (uintmax_t)inode,
422 (uintmax_t)inode);
439 "Inode 0x%08jx: indirect 2->%d", (uintmax_t)inode,
457 (uintmax_t)inode, ind3ctr, ind3ctr);
474 * Here we dump a list of all blocks allocated by this inode. We follow
478 dump_whole_ufs2_inode(ino_t inode, int level)
490 * Read the inode from disk/cache.
492 if (getinode(&disk, &dp, inode) == -1)
497 return; /* inode not in use */
501 * Dump the main inode structure.
503 snprintf(comment, sizeof(comment), "Inode 0x%08jx", (uintmax_t)inode);
526 (uintmax_t)inode);
539 (uintmax_t)inode);
554 (uintmax_t)inode, ind2ctr);
568 (uintmax_t)inode);
586 (uintmax_t)inode, ind3ctr);
602 (uintmax_t)inode, ind3ctr, ind3ctr);
625 "usage: ffsinfo [-g cylinder_group] [-i inode] [-l level] "