Searched refs:fstype (Results 1 – 8 of 8) sorted by relevance
/busybox-1.35.0/examples/shutdown-1.0/script/ |
D | stop_storage | 59 while read dev mntpoint fstype opt n1 n2; do 60 case "$fstype" in 62 say "$dev $mntpoint $fstype $opt $n1 $n2" 67 say "$dev $mntpoint $fstype $opt $n1 $n2 - RW!" 70 say "$dev $mntpoint $fstype $opt $n1 $n2"
|
/busybox-1.35.0/libbb/ |
D | match_fstype.c | 14 int FAST_FUNC fstype_matches(const char *fstype, const char *comma_list) in fstype_matches() argument 27 char *after_mnt_type = is_prefixed_with(comma_list, fstype); in fstype_matches()
|
/busybox-1.35.0/util-linux/ |
D | umount.c | 99 char *fstype = NULL; in umount_main() local 108 opt = getopt32(argv, OPTION_STRING, &fstype); in umount_main() 134 if (!fstype_matches(me.mnt_type, fstype)) in umount_main()
|
D | unshare.c | 75 const char *fstype, unsigned long mountflags) in mount_or_die() argument 77 if (mount(source, target, fstype, mountflags, NULL)) { in mount_or_die()
|
D | mount.c | 2275 char *fstype = NULL; in mount_main() local 2307 &lst_o, &fstype, &O_optmatch in mount_main() 2332 if (!fstype || strcmp(mtpair->mnt_type, fstype) == 0) in mount_main() 2351 mtpair->mnt_type = fstype; in mount_main() 2433 if (!fstype_matches(mtcur->mnt_type, fstype)) in mount_main()
|
/busybox-1.35.0/e2fsprogs/ |
D | fsck.c | 168 char *fstype; member 610 } else if (G.fstype in fsck_device() 611 && (G.fstype[0] != 'n' || G.fstype[1] != 'o') /* != "no" */ in fsck_device() 612 && !is_prefixed_with(G.fstype, "opts=") in fsck_device() 613 && !is_prefixed_with(G.fstype, "loop") in fsck_device() 614 && !strchr(G.fstype, ',') in fsck_device() 616 type = G.fstype; in fsck_device() 1036 if (G.fstype) in fsck_main() 1044 G.fstype = xstrdup(tmp); in fsck_main() 1045 compile_fs_type(G.fstype); in fsck_main()
|
/busybox-1.35.0/coreutils/ |
D | stat.c | 211 static const uint32_t fstype[] ALIGN4 = { in human_fstype() local 222 for (i = 0; i < ARRAY_SIZE(fstype); ++i) in human_fstype() 223 if (fstype[i] == f_type) in human_fstype()
|
/busybox-1.35.0/include/ |
D | libbb.h | 1583 extern int fstype_matches(const char *fstype, const char *comma_list) FAST_FUNC;
|