/src/sys/arch/hppa/stand/xxboot/ |
readufs.h | 31 typedef uint32_t ino32_t; typedef in typeref:typename:uint32_t 79 int (*get_inode)(ino32_t ino, union ufs_dinode *dibuf); 116 int get_ffs_inode(ino32_t ino, union ufs_dinode *dibuf); 117 int get_lfs_inode(ino32_t ino, union ufs_dinode *dibuf); 134 ino32_t ufs_lookup(ino32_t dirino, const char *fn); 135 ino32_t ufs_lookup_path(const char *path); 136 size_t ufs_load_file(void *buf, ino32_t dirino, const char *fn);
|
/src/sys/arch/x68k/stand/boot_ufs/ |
readufs.h | 34 typedef uint32_t ino32_t; typedef in typeref:typename:uint32_t 81 int (*get_inode)(ino32_t ino, union ufs_dinode *dibuf); 122 ino32_t ufs_lookup(ino32_t dirino, const char *fn); 123 ino32_t ufs_lookup_path(const char *path); 124 size_t ufs_load_file(void *buf, ino32_t dirino, const char *fn);
|
/src/sys/lib/libsa/ |
ext2fs.c | 116 typedef uint32_t ino32_t; typedef in typeref:typename:uint32_t 150 static int read_inode(ino32_t, struct open_file *); 153 static int search_directory(const char *, int, struct open_file *, ino32_t *); 164 read_inode(ino32_t inumber, struct open_file *f) 373 ino32_t *inumber_p) 396 if (fs2h32(dp->e2d_ino) == (ino32_t)0) 498 ino32_t inumber; 503 ino32_t parent_inumber; 664 inumber = (ino32_t)EXT2_ROOTINO;
|
minixfs3.c | 140 typedef uint32_t ino32_t; typedef in typeref:typename:uint32_t 173 static int read_inode(ino32_t, struct open_file *); 176 static int search_directory(const char *, int, struct open_file *, ino32_t *); 183 read_inode(ino32_t inumber, struct open_file *f) 396 ino32_t *inumber_p) 425 if (fs2h32(dp->mfsd_ino) == (ino32_t) 0) 536 ino32_t inumber; 541 ino32_t parent_inumber; 686 inumber = (ino32_t) ROOT_INODE;
|
ufs.c | 154 typedef uint32_t ino32_t; typedef in typeref:typename:uint32_t 206 static int read_inode(ino32_t, struct open_file *); 209 static int search_directory(const char *, int, struct open_file *, ino32_t *); 312 find_inode_sector(ino32_t inumber, struct open_file *f, daddr_t *isp) 350 read_inode(ino32_t inumber, struct open_file *f) 592 ino32_t *inumber_p) 614 if (ffs_get_ino(fp, dp) == (ino32_t)0) 691 ino32_t inumber; 696 ino32_t parent_inumber; 867 inumber = (ino32_t)UFS_ROOTINO [all...] |