Lines Matching refs:fstype

136 	int fstype;  member
180 .fstype = FS_TYPE_FAT,
208 .fstype = FS_TYPE_EXT,
232 .fstype = FS_TYPE_SANDBOX,
251 .fstype = FS_TYPE_UBIFS,
270 .fstype = FS_TYPE_BTRFS,
289 .fstype = FS_TYPE_SQUASHFS,
309 .fstype = FS_TYPE_ANY,
327 static struct fstype_info *fs_get_info(int fstype) in fs_get_info() argument
333 if (fstype == info->fstype) in fs_get_info()
367 int fs_set_blk_dev(const char *ifname, const char *dev_part_str, int fstype) in fs_set_blk_dev() argument
394 if (fstype != FS_TYPE_ANY && info->fstype != FS_TYPE_ANY && in fs_set_blk_dev()
395 fstype != info->fstype) in fs_set_blk_dev()
402 fs_type = info->fstype; in fs_set_blk_dev()
427 fs_type = info->fstype; in fs_set_blk_dev_with_part()
678 int fstype) in do_size() argument
685 if (fs_set_blk_dev(argv[1], argv[2], fstype)) in do_size()
697 int fstype) in do_load() argument
714 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype)) { in do_load()
776 int fstype) in do_ls() argument
783 if (fs_set_blk_dev(argv[1], (argc >= 3) ? argv[2] : NULL, fstype)) in do_ls()
793 int fstype) in file_exists() argument
795 if (fs_set_blk_dev(dev_type, dev_part, fstype)) in file_exists()
802 int fstype) in do_save() argument
815 if (fs_set_blk_dev(argv[1], argv[2], fstype)) in do_save()
844 int fstype) in do_fs_uuid() argument
853 if (fs_set_blk_dev(argv[1], argv[2], fstype)) in do_fs_uuid()
891 int fstype) in do_rm() argument
896 if (fs_set_blk_dev(argv[1], argv[2], fstype)) in do_rm()
906 int fstype) in do_mkdir() argument
913 if (fs_set_blk_dev(argv[1], argv[2], fstype)) in do_mkdir()
926 int fstype) in do_ln() argument
931 if (fs_set_blk_dev(argv[1], argv[2], fstype)) in do_ln()
949 if (entry->fstype != FS_TYPE_ANY) { in do_fs_types()