/src/usr.sbin/makefs/chfs/ |
chfs_mkfs.h | 37 void padblock(fsinfo_t *); 38 void write_eb_header(fsinfo_t *); 39 void write_vnode(fsinfo_t *, fsnode *); 40 void write_dirent(fsinfo_t *, fsnode *); 41 void write_file(fsinfo_t *, fsnode *, const char *); 42 void write_data(fsinfo_t *, fsnode *, unsigned char *, size_t, uint32_t);
|
chfs_mkfs.c | 67 buf_write(fsinfo_t *fsopts, const void *buf, size_t len) 86 padblock(fsinfo_t *fsopts) 96 padword(fsinfo_t *fsopts) 104 pad_block_if_less_than(fsinfo_t *fsopts, int req) 115 write_eb_header(fsinfo_t *fsopts) 162 write_vnode(fsinfo_t *fsopts, fsnode *node) 190 write_dirent(fsinfo_t *fsopts, fsnode *node) 226 write_file(fsinfo_t *fsopts, fsnode *node, const char *dir) 278 write_data(fsinfo_t *fsopts, fsnode *node, unsigned char *buf, size_t len,
|
/src/usr.sbin/makefs/ffs/ |
newfs_extern.h | 31 struct fs *ffs_mkfs(const char *, const fsinfo_t *, time_t); 32 void ffs_write_superblock(struct fs *, const fsinfo_t *); 33 void ffs_rdfs(daddr_t, int, void *, const fsinfo_t *); 34 void ffs_wtfs(daddr_t, int, void *, const fsinfo_t *);
|
buf.c | 68 fsinfo_t *fs = vp->fs; 153 fsinfo_t *fs = bp->b_fs;
|
mkfs.c | 78 static void initcg(uint32_t, time_t, const fsinfo_t *); 130 ffs_sb_copy(struct fs *o, const struct fs *i, size_t l, const fsinfo_t *fsopts) 141 ffs_mkfs(const char *fsys, const fsinfo_t *fsopts, time_t tstamp) 568 ffs_write_superblock(struct fs *fs, const fsinfo_t *fsopts) 611 initcg(uint32_t cylno, time_t utime, const fsinfo_t *fsopts) 801 ffs_rdfs(daddr_t bno, int size, void *bf, const fsinfo_t *fsopts) 824 ffs_wtfs(daddr_t bno, int size, void *bf, const fsinfo_t *fsopts)
|
/src/usr.sbin/makefs/ |
v7fs_makefs.h | 42 void v7fs_estimate(const char *, fsnode *, fsinfo_t *); 43 int v7fs_populate(const char *, fsnode *, fsinfo_t *,
|
chfs.c | 51 static void chfs_validate(const char *, fsnode *, fsinfo_t *); 52 static int chfs_create_image(const char *, fsinfo_t *); 53 static int chfs_populate_dir(const char *, fsnode *, fsnode *, fsinfo_t *); 57 chfs_prep_opts(fsinfo_t *fsopts) 81 chfs_cleanup_opts(fsinfo_t *fsopts) 88 chfs_parse_opts(const char *option, fsinfo_t *fsopts) 98 chfs_makefs(const char *image, const char *dir, fsnode *root, fsinfo_t *fsopts) 140 chfs_validate(const char* dir, fsnode *root, fsinfo_t *fsopts) 161 chfs_create_image(const char *image, fsinfo_t *fsopts) 176 fsinfo_t *fsopts [all...] |
v7fs.c | 62 v7fs_prep_opts(fsinfo_t *fsopts) 78 v7fs_cleanup_opts(fsinfo_t *fsopts) 85 v7fs_parse_opts(const char *option, fsinfo_t *fsopts) 92 v7fs_makefs(const char *image, const char *dir, fsnode *root, fsinfo_t *fsopts)
|
makefs.h | 151 * fsinfo_t - contains various settings and parameters pertaining to 183 } fsinfo_t; typedef in typeref:struct:makefs_fsinfo 201 void fs ## _prep_opts(fsinfo_t *); \ 202 int fs ## _parse_opts(const char *, fsinfo_t *); \ 203 void fs ## _cleanup_opts(fsinfo_t *); \ 204 void fs ## _makefs(const char *, const char *, fsnode *, fsinfo_t *)
|
msdos.c | 66 fsnode *, fsinfo_t *); 74 msdos_prep_opts(fsinfo_t *fsopts) 105 msdos_cleanup_opts(fsinfo_t *fsopts) 112 msdos_parse_opts(const char *option, fsinfo_t *fsopts) 143 msdos_makefs(const char *image, const char *dir, fsnode *root, fsinfo_t *fsopts) 219 fsnode *parent, fsinfo_t *fsopts)
|
ffs.c | 136 static int ffs_create_image(const char *, fsinfo_t *); 137 static void ffs_dump_fsinfo(fsinfo_t *); 140 static int ffs_populate_dir(const char *, fsnode *, fsinfo_t *); 141 static void ffs_size_dir(fsnode *, fsinfo_t *); 142 static void ffs_validate(const char *, fsnode *, fsinfo_t *); 143 static void ffs_write_file(union dinode *, uint32_t, void *, fsinfo_t *); 144 static void ffs_write_inode(union dinode *, uint32_t, const fsinfo_t *); 146 fsnode *, fsinfo_t *); 148 fsnode *, fsinfo_t *); 154 ffs_prep_opts(fsinfo_t *fsopts [all...] |
makefs.c | 67 void (*prepare_options)(fsinfo_t *); 68 int (*parse_options)(const char *, fsinfo_t *); 69 void (*cleanup_options)(fsinfo_t *); 71 fsinfo_t *); 94 static void usage(fstype_t *, fsinfo_t *) __dead; 102 fsinfo_t fsoptions; 512 usage(fstype_t *fstype, fsinfo_t *fsoptions)
|
udf.c | 115 udf_prep_opts(fsinfo_t *fsopts) 178 udf_cleanup_opts(fsinfo_t *fsopts) 194 udf_parse_opts(const char *option, fsinfo_t *fsopts) 688 udf_estimate_walk(fsinfo_t *fsopts, 877 udf_populate_walk(fsinfo_t *fsopts, fsnode *root, char *dir, 1036 udf_populate(const char *dir, fsnode *root, fsinfo_t *fsopts, 1051 udf_enumerate_and_estimate(const char *dir, fsnode *root, fsinfo_t *fsopts, 1171 udf_makefs(const char *image, const char *dir, fsnode *root, fsinfo_t *fsopts)
|
cd9660.c | 262 cd9660_prep_opts(fsinfo_t *fsopts) 336 cd9660_cleanup_opts(fsinfo_t *fsopts) 375 cd9660_parse_opts(const char *option, fsinfo_t *fsopts) 485 * @param struct fsinfo_t *fsopts Any options 489 fsinfo_t *fsopts)
|
/src/usr.sbin/makefs/v7fs/ |
v7fs_estimate.c | 192 determine_fs_size(fsinfo_t *fsopts, struct v7fs_geometry *geom) 251 v7fs_estimate(const char *dir, fsnode *root, fsinfo_t *fsopts)
|
v7fs_populate.c | 258 v7fs_populate(const char *dir, fsnode *root, fsinfo_t *fsopts,
|