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

  /prebuilt/linux-x86/toolchain/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
  /bootable/recovery/
common.h 94 const char* fs_type; // "yaffs2" or "ext4" or "vfat" member in struct:__anon662
96 const char* device; // MTD partition name if fs_type == "yaffs"
97 // block device if fs_type == "ext4" or "vfat"
99 const char* device2; // alternative device to try if fs_type
roots.c 55 device_volumes[0].fs_type = "ramdisk";
76 char* fs_type = strtok(NULL, " \t\n"); local
91 if (mount_point && fs_type && device) {
97 device_volumes[num_volumes].fs_type = strdup(fs_type);
120 printf(" %d %s %s %s %s %lld\n", i, v->mount_point, v->fs_type,
145 if (strcmp(v->fs_type, "ramdisk") == 0) {
166 if (strcmp(v->fs_type, "yaffs2") == 0) {
176 return mtd_mount_partition(partition, v->mount_point, v->fs_type, 0);
177 } else if (strcmp(v->fs_type, "ext4") == 0 |
    [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);
mke2fs.c 936 static char **parse_fs_type(const char *fs_type,
957 if (fs_type)
958 ext_type = fs_type;
979 profile_get_string(profile, "defaults", "fs_type", 0,
1145 const char * fs_type = 0; local
    [all...]
  /bootable/recovery/updater/
install.c 46 // mount(fs_type, partition_type, location, mount_point)
48 // fs_type="yaffs2" partition_type="MTD" location=partition
49 // fs_type="ext4" partition_type="EMMC" location=device
55 char* fs_type; local
59 if (ReadArgs(state, argv, 4, &fs_type, &partition_type,
64 if (strlen(fs_type) == 0) {
65 ErrorAbort(state, "fs_type argument to %s() can't be empty", name);
94 if (mtd_mount_partition(mtd, mount_point, fs_type, 0 /* rw */) != 0) {
102 if (mount(location, mount_point, fs_type,
113 free(fs_type);
192 char* fs_type; local
    [all...]
  /external/freetype/include/freetype/internal/
t1types.h 99 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/vold/
cryptfs.c 559 static int get_orig_mount_parms(char *mount_point, char *fs_type, char *real_blkdev,
565 property_get("ro.crypto.fs_type", fs_type, "");
644 char fs_type[32]; local
694 if (! get_orig_mount_parms(DATA_MNT_POINT, fs_type, real_blkdev, &mnt_flags, fs_options)) {
699 mount(crypto_blkdev, DATA_MNT_POINT, fs_type, mnt_flags, fs_options);
729 char fs_type[PROPERTY_VALUE_MAX]; local
740 if (get_orig_mount_parms(mount_point, fs_type, real_blkdev, &mnt_flags, fs_options)) {
768 char fs_type[PROPERTY_VALUE_MAX]; local
782 if (get_orig_mount_parms(mount_point, fs_type, real_blkdev, &mnt_flags, fs_options))
926 char fs_type[PROPERTY_VALUE_MAX]; local
1131 char fs_type[PROPERTY_VALUE_MAX], fs_options[PROPERTY_VALUE_MAX], local
    [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 940 milliseconds