HomeSort by relevance Sort by last modified time
    Searched refs:fs_type (Results 1 - 25 of 25) sorted by null

  /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/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/sepolicy/
attributes 12 attribute fs_type;
  /system/core/fs_mgr/include/
fs_mgr.h 33 char *fs_type; member in struct:fstab_rec
53 const char *mount_point, const char *fs_type,
  /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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
fstab.h 63 const char *fs_type; /* FSTAB_* from fs_mntops */ member in struct:fstab
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
fstab.h 63 const char *fs_type; /* FSTAB_* from fs_mntops */ member in struct:fstab
  /system/core/fs_mgr/
fs_mgr.c 368 ERROR("Error parsing fs_type\n");
371 fstab->recs[cnt].fs_type = strdup(p);
416 free(fstab->recs[i].fs_type);
433 static void check_fs(char *blk_device, char *fs_type, char *target)
446 if (!strcmp(fs_type, "ext2") || !strcmp(fs_type, "ext3") || !strcmp(fs_type, "ext4")) {
460 ret = mount(blk_device, target, fs_type, tmpmnt_flags, tmpmnt_opts);
528 if (!strcmp(fstab->recs[i].fs_type, "emmc") ||
529 !strcmp(fstab->recs[i].fs_type, "mtd"))
    [all...]
  /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...]
edify_generator.py 140 (p.fs_type, common.PARTITION_TYPES[p.fs_type],
169 (p.fs_type, common.PARTITION_TYPES[p.fs_type],
199 partition_type = common.PARTITION_TYPES[p.fs_type]
209 raise ValueError("don't know how to write \"%s\" partitions" % (p.fs_type,))
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...]
common.py 195 p.fs_type = pieces[1]
237 p.fs_type = pieces[2]
488 fs_type = p.fs_type
493 if not fs_type or not limit: return
495 if fs_type == "yaffs2":
954 return PARTITION_TYPES[fstab[mount_point].fs_type], fstab[mount_point].device
  /system/vold/
fstrim.c 69 if (!strcmp(fstab->recs[i].fs_type, "emmc") ||
70 !strcmp(fstab->recs[i].fs_type, "mtd")) {
cryptfs.c 709 char fs_type[32]; local
    [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);
fsck.c 744 static void compile_fs_type(char *fs_type, struct fs_type_compile *cmp)
750 if (fs_type) {
751 for (cp=fs_type; *cp; cp++) {
768 if (!fs_type)
771 list = string_copy(fs_type);
mke2fs.c 970 static char **parse_fs_type(const char *fs_type,
991 if (fs_type)
992 ext_type = fs_type;
1013 profile_get_string(profile, "defaults", "fs_type", 0,
1070 _("\nWarning: the fs_type %s is not "
1195 const char * fs_type = 0; local
    [all...]
  /bootable/recovery/updater/
install.c 45 // mount(fs_type, partition_type, location, mount_point)
47 // fs_type="yaffs2" partition_type="MTD" location=partition
48 // fs_type="ext4" partition_type="EMMC" location=device
54 char* fs_type; local
58 if (ReadArgs(state, argv, 4, &fs_type, &partition_type,
63 if (strlen(fs_type) == 0) {
64 ErrorAbort(state, "fs_type argument to %s() can't be empty", name);
105 if (mtd_mount_partition(mtd, mount_point, fs_type, 0 /* rw */) != 0) {
113 if (mount(location, mount_point, fs_type,
124 free(fs_type);
203 char* fs_type; local
    [all...]
  /external/freetype/include/freetype/internal/
t1types.h 88 FT_UShort fs_type; member in struct:PS_FontExtraRec_
  /ndk/sources/host-tools/make-3.81/
dir.c 433 char fs_type[BUFSIZ];
535 &fs_flags, fs_type, sizeof (fs_type)) == FALSE)
537 else if (!strcmp(fs_type, "FAT"))
539 else if (!strcmp(fs_type, "NTFS"))
430 char fs_type[BUFSIZ]; local
  /system/core/fastboot/
engine.c 128 char *fs_type; member in struct:generator
166 if (!strncmp(generators[i].fs_type, response, FB_RESPONSE_SZ)) {
338 if (!strncmp(generators[i].fs_type, response, FB_RESPONSE_SZ)) {
  /external/kernel-headers/original/linux/
fs.h     [all...]
  /external/qemu/
usb-linux.c 1262 const char *fs_type[] = {"unknown", "proc", "dev", "sys"}; local
    [all...]
  /external/qemu/block/
vvfat.c 252 uint8_t fs_type; /* 0x1 = FAT12, 0x6 = FAT16, 0xe = FAT16_LBA, 0xb = FAT32, 0xc = FAT32_LBA */ member in struct:partition_t
403 partition->fs_type= s->fat_type==12 ? 0x1:
    [all...]

Completed in 1810 milliseconds