Home
last modified time | relevance | path

Searched refs:fs_type (Results 1 – 25 of 131) sorted by relevance

123456

/system/sepolicy/public/
Dfile.te2 type labeledfs, fs_type;
3 type pipefs, fs_type;
4 type sockfs, fs_type;
5 type rootfs, fs_type;
6 type proc, fs_type, proc_type;
8 type proc_security, fs_type, proc_type;
9 type proc_drop_caches, fs_type, proc_type;
10 type proc_overcommit_memory, fs_type, proc_type;
11 type proc_min_free_order_shift, fs_type, proc_type;
13 type usermodehelper, fs_type, proc_type;
[all …]
Dmediadrmserver.te28 neverallow mediadrmserver { file_type fs_type }:file execute_no_trans;
/system/sepolicy/prebuilts/api/28.0/public/
Dfile.te2 type labeledfs, fs_type;
3 type pipefs, fs_type;
4 type sockfs, fs_type;
5 type rootfs, fs_type;
6 type proc, fs_type, proc_type;
8 type proc_security, fs_type, proc_type;
9 type proc_drop_caches, fs_type, proc_type;
10 type proc_overcommit_memory, fs_type, proc_type;
11 type proc_min_free_order_shift, fs_type, proc_type;
13 type usermodehelper, fs_type, proc_type;
[all …]
Dmediadrmserver.te28 neverallow mediadrmserver { file_type fs_type }:file execute_no_trans;
/system/sepolicy/prebuilts/api/26.0/public/
Dfile.te2 type labeledfs, fs_type;
3 type pipefs, fs_type;
4 type sockfs, fs_type;
5 type rootfs, fs_type;
6 type proc, fs_type;
8 type proc_security, fs_type;
9 type proc_drop_caches, fs_type;
10 type proc_overcommit_memory, fs_type;
12 type usermodehelper, fs_type, sysfs_type;
13 type qtaguid_proc, fs_type, mlstrustedobject;
[all …]
Dsu.te32 dontaudit su fs_type:filesystem *;
33 dontaudit su {fs_type dev_type file_type}:dir_file_class_set *;
Dmediadrmserver.te30 neverallow mediadrmserver { file_type fs_type }:file execute_no_trans;
/system/sepolicy/prebuilts/api/27.0/public/
Dfile.te2 type labeledfs, fs_type;
3 type pipefs, fs_type;
4 type sockfs, fs_type;
5 type rootfs, fs_type;
6 type proc, fs_type;
8 type proc_security, fs_type;
9 type proc_drop_caches, fs_type;
10 type proc_overcommit_memory, fs_type;
12 type usermodehelper, fs_type;
13 type sysfs_usermodehelper, fs_type, sysfs_type;
[all …]
Dsu.te32 dontaudit su fs_type:filesystem *;
33 dontaudit su {fs_type dev_type file_type}:dir_file_class_set *;
Dmediadrmserver.te28 neverallow mediadrmserver { file_type fs_type }:file execute_no_trans;
/system/extras/tests/fstest/
Drecovery_test.cpp186 FsRecoveryTest() : fs_type(FS_UNKNOWN), blk_fd_(-1) {} in FsRecoveryTest()
189 fs_type = FS_UNKNOWN; in setCacheInfoFromFstab()
199 if (!strcmp(fstab->recs[i].fs_type, "ext4")) { in setCacheInfoFromFstab()
200 fs_type = FS_EXT4; in setCacheInfoFromFstab()
202 } else if (!strcmp(fstab->recs[i].fs_type, "f2fs")) { in setCacheInfoFromFstab()
203 fs_type = FS_F2FS; in setCacheInfoFromFstab()
210 return fs_type != FS_UNKNOWN; in setCacheInfoFromFstab()
271 Fs_Type fs_type; member in android::FsRecoveryTest
279 if (fs_type != FS_EXT4) { in TEST_F()
297 if (fs_type != FS_EXT4) { in TEST_F()
/system/core/fs_mgr/
Dfs_mgr.cpp126 static bool is_extfs(const std::string& fs_type) { in is_extfs() argument
127 return fs_type == "ext4" || fs_type == "ext3" || fs_type == "ext2"; in is_extfs()
138 static void check_fs(const char *blk_device, char *fs_type, char *target, int *fs_stat) in check_fs() argument
148 if (is_extfs(fs_type)) { in check_fs()
167 if (!strcmp(fs_type, "ext4")) { in check_fs()
171 ret = mount(blk_device, target, fs_type, tmpmnt_flags, tmpmnt_opts); in check_fs()
172 PINFO << __FUNCTION__ << "(): mount(" << blk_device << "," << target << "," << fs_type in check_fs()
224 } else if (!strcmp(fs_type, "f2fs")) { in check_fs()
421 if (is_extfs(rec->fs_type)) { in prepare_fs_for_mount()
442 check_fs(blk_device, rec->fs_type, rec->mount_point, &fs_stat); in prepare_fs_for_mount()
[all …]
Dfs_mgr_format.cpp141 << " as '" << fstab->fs_type << "'"; in fs_mgr_do_format()
143 if (!strncmp(fstab->fs_type, "f2fs", 4)) { in fs_mgr_do_format()
145 } else if (!strncmp(fstab->fs_type, "ext4", 4)) { in fs_mgr_do_format()
148 LERROR << "File system type '" << fstab->fs_type << "' is not supported"; in fs_mgr_do_format()
/system/vold/
DIdleMaint.cpp87 const std::string& fs_type = vol->getFsType(); in addFromVolumeManager() local
88 if (fs_type == "f2fs" && in addFromVolumeManager()
90 paths->push_back(std::string("/sys/fs/") + fs_type + in addFromVolumeManager()
105 auto fs_type = std::string(fstab->recs[i].fs_type); in addFromFstab() local
107 if (fs_type == "emmc" || fs_type == "mtd") { in addFromFstab()
132 if (std::string(fstab->recs[i].fs_type) == "f2fs" && in addFromFstab()
134 paths->push_back(std::string("/sys/fs/") + fstab->recs[i].fs_type + in addFromFstab()
/system/core/fs_mgr/include_fstab/fstab/
Dfstab.h42 char* fs_type; member
68 int fs_mgr_add_entry(struct fstab* fstab, const char* mount_point, const char* fs_type,
/system/core/fastboot/
Dfs.cpp202 const char* fs_type; //must match what fastboot reports for partition type member
213 const struct fs_generator* fs_get_generator(const std::string& fs_type) { in fs_get_generator() argument
215 if (fs_type == generators[i].fs_type) { in fs_get_generator()
Dfs.h9 const struct fs_generator* fs_get_generator(const std::string& fs_type);
/system/sepolicy/prebuilts/api/27.0/private/
Dfile.te7 type config_gz, fs_type;
Dblkid.te22 neverallow blkid { file_type fs_type -blkid_exec -shell_exec }:file entrypoint;
/system/sepolicy/prebuilts/api/26.0/private/
Dfile.te7 type config_gz, fs_type;
Dblkid.te22 neverallow blkid { file_type fs_type -blkid_exec -shell_exec }:file entrypoint;
/system/sepolicy/prebuilts/api/28.0/private/
Dfile.te2 type config_gz, fs_type, proc_type;
Dblkid.te22 neverallow blkid { file_type fs_type -blkid_exec -shell_exec }:file entrypoint;
/system/sepolicy/private/
Dfile.te2 type config_gz, fs_type, proc_type;
Dblkid.te22 neverallow blkid { file_type fs_type -blkid_exec -shell_exec }:file entrypoint;

123456