/device/samsung/manta/sepolicy/ |
file.te | 1 type ffs, fs_type;
|
/device/asus/grouper/sepolicy/ |
file.te | 1 type sysfs_firmware_writable, fs_type, sysfs_type;
|
/external/sepolicy/ |
kernel.te | 8 allow kernel {fs_type dev_type file_type}:dir_file_class_set relabelto;
|
file.te | 2 type labeledfs, fs_type; 3 type pipefs, fs_type; 4 type sockfs, fs_type; 5 type rootfs, fs_type; 6 type proc, fs_type; 7 type qtaguid_proc, fs_type, mlstrustedobject; 8 type proc_bluetooth_writable, fs_type; 9 type selinuxfs, fs_type; 10 type cgroup, fs_type, mlstrustedobject; 11 type sysfs, fs_type, mlstrustedobject [all...] |
unconfined.te | 13 allow unconfineddomain fs_type:filesystem *; 14 allow unconfineddomain {fs_type dev_type file_type}:{ dir blk_file lnk_file sock_file fifo_file } ~relabelto; 15 allow unconfineddomain {fs_type dev_type file_type}:{ chr_file file } ~{entrypoint relabelto};
|
init.te | 11 allow init {fs_type dev_type file_type}:dir_file_class_set relabelto;
|
attributes | 12 attribute fs_type;
|
device.te | 2 type device, dev_type, fs_type;
|
/bootable/recovery/ |
roots.cpp | 59 printf(" %d %s %s %s %lld\n", i, v->mount_point, v->fs_type, 75 if (strcmp(v->fs_type, "ramdisk") == 0) { 96 if (strcmp(v->fs_type, "yaffs2") == 0) { 106 return mtd_mount_partition(partition, v->mount_point, v->fs_type, 0); 107 } else if (strcmp(v->fs_type, "ext4") == 0 || 108 strcmp(v->fs_type, "vfat") == 0) { 109 result = mount(v->blk_device, v->mount_point, v->fs_type, 117 LOGE("unknown fs_type \"%s\" for %s\n", v->fs_type, v->mount_point); 127 if (strcmp(v->fs_type, "ramdisk") == 0) [all...] |
bootloader.cpp | 40 if (strcmp(v->fs_type, "mtd") == 0) { 42 } else if (strcmp(v->fs_type, "emmc") == 0) { 45 LOGE("unknown misc partition fs_type \"%s\"\n", v->fs_type); 55 if (strcmp(v->fs_type, "mtd") == 0) { 57 } else if (strcmp(v->fs_type, "emmc") == 0) { 60 LOGE("unknown misc partition fs_type \"%s\"\n", v->fs_type);
|
/external/chromium_org/third_party/freetype/src/base/ |
ftfstype.c | 33 /* first, try to get the fs_type directly from the font */
47 extra.fs_type != 0 )
48 return extra.fs_type;
|
/external/freetype/src/base/ |
ftfstype.c | 33 /* first, try to get the fs_type directly from the font */
47 extra.fs_type != 0 )
48 return extra.fs_type;
|
/build/tools/releasetools/ |
build_image.py | 53 fs_type = prop_dict.get("fs_type", "") 55 if fs_type.startswith("ext"): 60 build_command.extend([in_dir, out_file, fs_type, 123 copy_prop("fs_type", "fs_type") 126 copy_prop("fs_type", "fs_type") 129 copy_prop("cache_fs_type", "fs_type") 132 copy_prop("vendor_fs_type", "fs_type") [all...] |
img_from_target_files | 82 image_props["fs_type" ] = fstab["/system"].fs_type 102 if "fs_type" not in image_props: 124 image_props["fs_type" ] = fstab["/vendor"].fs_type 140 if (image_props.get("fs_type", "").startswith("ext") and 156 image_props["fs_type" ] = fstab["/data"].fs_type 173 if "fs_type" not in image_props: 188 image_props["fs_type" ] = fstab["/cache"].fs_typ [all...] |
edify_generator.py | 149 (p.fs_type, common.PARTITION_TYPES[p.fs_type], 178 (p.fs_type, common.PARTITION_TYPES[p.fs_type], 222 partition_type = common.PARTITION_TYPES[p.fs_type] 232 raise ValueError("don't know how to write \"%s\" partitions" % (p.fs_type,))
|
/external/chromium_org/ppapi/shared_impl/ |
file_type_conversion.cc | 84 PP_FileSystemType fs_type, 91 info_out->system_type = fs_type; 95 DCHECK_EQ(PP_FILESYSTEMTYPE_EXTERNAL, fs_type);
|
file_type_conversion.h | 28 PP_FileSystemType fs_type,
|
/system/core/fs_mgr/include/ |
fs_mgr.h | 36 char *fs_type; member in struct:fstab_rec 59 const char *mount_point, const char *fs_type,
|
/system/core/fs_mgr/ |
fs_mgr.c | 390 ERROR("Error parsing fs_type\n"); 393 fstab->recs[cnt].fs_type = strdup(p); 441 free(fstab->recs[i].fs_type); 458 static void check_fs(char *blk_device, char *fs_type, char *target) 471 if (!strcmp(fs_type, "ext2") || !strcmp(fs_type, "ext3") || !strcmp(fs_type, "ext4")) { 485 ret = mount(blk_device, target, fs_type, tmpmnt_flags, tmpmnt_opts); 591 if (!strcmp(fstab->recs[i].fs_type, "swap") || 592 !strcmp(fstab->recs[i].fs_type, "emmc") | [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_state_fs.c | 116 struct lp_type fs_type, 130 assert(fs_type.width == 32); 131 assert(fs_type.length <= Elements(bits)); 132 mask_type = lp_int_type(fs_type); 142 assert(fs_type.length == 4); 149 assert(fs_type.length == 4); 169 for (i = 0; i < fs_type.length / 4; i++) { 176 mask = LLVMBuildAnd(builder, mask, LLVMConstVector(bits, fs_type.length), ""); 770 struct lp_type fs_type; local 832 memset(&fs_type, 0, sizeof fs_type) [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_state_fs.c | 116 struct lp_type fs_type, 130 assert(fs_type.width == 32); 131 assert(fs_type.length <= Elements(bits)); 132 mask_type = lp_int_type(fs_type); 142 assert(fs_type.length == 4); 149 assert(fs_type.length == 4); 169 for (i = 0; i < fs_type.length / 4; i++) { 176 mask = LLVMBuildAnd(builder, mask, LLVMConstVector(bits, fs_type.length), ""); 770 struct lp_type fs_type; local 832 memset(&fs_type, 0, sizeof fs_type) [all...] |
/external/e2fsprogs/misc/ |
blkid.c | 135 static void pretty_print_line(const char *device, const char *fs_type, 161 len = pretty_print_word(fs_type, fs_type_len, len, 0); 172 const char *uuid = "", *fs_type = "", *label = ""; local 178 pretty_print_line("device", "fs_type", "label", 196 fs_type = value; 216 pretty_print_line(devname, fs_type, label, mtpt, uuid);
|
/external/chromium_org/webkit/browser/fileapi/ |
file_system_quota_client.cc | 187 FileSystemType fs_type = QuotaStorageTypeToFileSystemType(type); local 188 DCHECK(fs_type != kFileSystemTypeUnknown); 196 fs_type),
|
/bootable/recovery/updater/ |
install.c | 53 // mount(fs_type, partition_type, location, mount_point) 55 // fs_type="yaffs2" partition_type="MTD" location=partition 56 // fs_type="ext4" partition_type="EMMC" location=device 62 char* fs_type; local 66 if (ReadArgs(state, argv, 4, &fs_type, &partition_type, 71 if (strlen(fs_type) == 0) { 72 ErrorAbort(state, "fs_type argument to %s() can't be empty", name); 113 if (mtd_mount_partition(mtd, mount_point, fs_type, 0 /* rw */) != 0) { 121 if (mount(location, mount_point, fs_type, 132 free(fs_type); 211 char* fs_type; local [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
fstab.h | 63 const char *fs_type; /* FSTAB_* from fs_mntops */ member in struct:fstab
|