Searched refs:fsinfo_t (Results 1 – 7 of 7) sorted by relevance
| /mirbsd/src/usr.sbin/makefs/ |
| D | makefs.h | 168 } fsinfo_t; typedef 192 void ffs_prep_opts(fsinfo_t *); 193 int ffs_parse_opts(const char *, fsinfo_t *); 194 void ffs_cleanup_opts(fsinfo_t *); 195 void ffs_makefs(const char *, const char *, fsnode *, fsinfo_t *); 197 void cd9660_prep_opts(fsinfo_t *); 198 int cd9660_parse_opts(const char *, fsinfo_t *); 199 void cd9660_cleanup_opts(fsinfo_t *); 200 void cd9660_makefs(const char *, const char *, fsnode *, fsinfo_t *);
|
| D | ffs.c | 144 static int ffs_create_image(const char *, fsinfo_t *); 145 static void ffs_dump_fsinfo(fsinfo_t *); 148 static int ffs_populate_dir(const char *, fsnode *, fsinfo_t *); 149 static void ffs_size_dir(fsnode *, fsinfo_t *); 150 static void ffs_validate(const char *, fsnode *, fsinfo_t *); 151 static void ffs_write_file(union dinode *, uint32_t, void *, fsinfo_t *); 152 static void ffs_write_inode(union dinode *, uint32_t, const fsinfo_t *); 154 fsnode *, fsinfo_t *); 156 fsnode *, fsinfo_t *); 165 ffs_prep_opts(fsinfo_t *fsopts) in ffs_prep_opts() [all …]
|
| D | makefs.c | 75 void (*prepare_options)(fsinfo_t *); 76 int (*parse_options)(const char *, fsinfo_t *); 77 void (*cleanup_options)(fsinfo_t *); 79 fsinfo_t *); 102 fsinfo_t fsoptions; in main()
|
| D | cd9660.c | 282 cd9660_prep_opts(fsinfo_t *fsopts __unused) in cd9660_prep_opts() 288 cd9660_cleanup_opts(fsinfo_t *fsopts __unused) in cd9660_cleanup_opts() 325 cd9660_parse_opts(const char *option, fsinfo_t *fsopts __unused) in cd9660_parse_opts() 499 fsinfo_t *fsopts __unused) in cd9660_makefs()
|
| D | README | 98 pointer from the fsinfo_t strucutre. It is up to the filesystem to allocate
|
| /mirbsd/src/usr.sbin/makefs/ffs/ |
| D | newfs_extern.h | 29 struct fs *ffs_mkfs(const char *, const fsinfo_t *); 30 void ffs_write_superblock(struct fs *, const fsinfo_t *); 31 void ffs_rdfs(daddr_t, int, void *, const fsinfo_t *); 32 void ffs_wtfs(daddr_t, int, void *, const fsinfo_t *);
|
| D | mkfs.c | 78 static void initcg(int, time_t, const fsinfo_t *); 131 ffs_mkfs(const char *fsys, const fsinfo_t *fsopts) in ffs_mkfs() 557 ffs_write_superblock(struct fs *fs, const fsinfo_t *fsopts) in ffs_write_superblock() 610 initcg(int cylno, time_t utime, const fsinfo_t *fsopts) in initcg() 798 ffs_rdfs(daddr_t bno, int size, void *bf, const fsinfo_t *fsopts) in ffs_rdfs() 823 ffs_wtfs(daddr_t bno, int size, void *bf, const fsinfo_t *fsopts) in ffs_wtfs()
|