HomeSort by: relevance | last modified time | path
    Searched defs:chfs_opts (Results 1 - 4 of 4) sorted by relevancy

  /src/usr.sbin/makefs/
chfs.c 59 chfs_opt_t *chfs_opts = ecalloc(1, sizeof(*chfs_opts)); local in function:chfs_prep_opts
62 { 'p', "pagesize", &chfs_opts->pagesize, OPT_INT32,
64 { 'e', "eraseblock", &chfs_opts->eraseblock, OPT_INT32,
66 { 'm', "mediatype", &chfs_opts->mediatype, OPT_INT32,
71 chfs_opts->pagesize = -1;
72 chfs_opts->eraseblock = -1;
73 chfs_opts->mediatype = -1;
76 fsopts->fs_specific = chfs_opts;
142 chfs_opt_t *chfs_opts; local in function:chfs_validate
    [all...]
chfs.c 59 chfs_opt_t *chfs_opts = ecalloc(1, sizeof(*chfs_opts)); local in function:chfs_prep_opts
62 { 'p', "pagesize", &chfs_opts->pagesize, OPT_INT32,
64 { 'e', "eraseblock", &chfs_opts->eraseblock, OPT_INT32,
66 { 'm', "mediatype", &chfs_opts->mediatype, OPT_INT32,
71 chfs_opts->pagesize = -1;
72 chfs_opts->eraseblock = -1;
73 chfs_opts->mediatype = -1;
76 fsopts->fs_specific = chfs_opts;
142 chfs_opt_t *chfs_opts; local in function:chfs_validate
    [all...]
  /src/usr.sbin/makefs/chfs/
chfs_mkfs.c 88 chfs_opt_t *chfs_opts = fsopts->fs_specific; local in function:padblock
89 while (img_ofs % chfs_opts->eraseblock) {
91 chfs_opts->eraseblock - (img_ofs % chfs_opts->eraseblock)));
106 chfs_opt_t *chfs_opts = fsopts->fs_specific; local in function:pad_block_if_less_than
107 if ((img_ofs % chfs_opts->eraseblock) + req >
108 (uint32_t)chfs_opts->eraseblock) {
chfs_mkfs.c 88 chfs_opt_t *chfs_opts = fsopts->fs_specific; local in function:padblock
89 while (img_ofs % chfs_opts->eraseblock) {
91 chfs_opts->eraseblock - (img_ofs % chfs_opts->eraseblock)));
106 chfs_opt_t *chfs_opts = fsopts->fs_specific; local in function:pad_block_if_less_than
107 if ((img_ofs % chfs_opts->eraseblock) + req >
108 (uint32_t)chfs_opts->eraseblock) {

Completed in 271 milliseconds