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

  /system/core/fastboot/
fs.c 41 char *fs_type; //must match what fastboot reports for partition type member in struct:fs_generator
51 const struct fs_generator* fs_get_generator(const char *fs_type)
56 if (!strcmp(generators[i].fs_type, fs_type))
engine.c 111 char fs_type[FB_RESPONSE_SZ + 1] = {0,}; local
117 status = fb_getvar(usb, fs_type, "partition-type:%s", partition);
121 return !!fs_get_generator(fs_type);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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.11-4.8/sysroot/usr/include/
fstab.h 63 const char *fs_type; /* FSTAB_* from fs_mntops */ member in struct:fstab
  /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),
  /system/core/fs_mgr/include/
fs_mgr.h 41 char *fs_type; member in struct:fstab_rec
72 const char *mount_point, const char *fs_type,
  /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 1050 static char **parse_fs_type(const char *fs_type,
1072 if (fs_type)
1073 ext_type = fs_type;
1096 profile_get_string(profile, "defaults", "fs_type", 0,
1155 _("\nWarning: the fs_type %s is not "
1293 char * fs_type = 0; local
    [all...]
  /system/extras/tests/fstest/
recovery_test.cpp 45 enum Fs_Type { FS_UNKNOWN, FS_EXT4, FS_F2FS };
187 FsRecoveryTest() : fs_type(FS_UNKNOWN), blk_fd_(-1) {}
190 fs_type = FS_UNKNOWN;
204 if (!strcmp(fstab->recs[i].fs_type, "ext4")) {
205 fs_type = FS_EXT4;
207 } else if (!strcmp(fstab->recs[i].fs_type, "f2fs")) {
208 fs_type = FS_F2FS;
215 return fs_type != FS_UNKNOWN;
273 Fs_Type fs_type; member in class:android::FsRecoveryTest
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/internal/
t1types.h 88 FT_UShort fs_type; member in struct:PS_FontExtraRec_
  /external/freetype/include/internal/
t1types.h 88 FT_UShort fs_type; member in struct:PS_FontExtraRec_
  /external/pdfium/core/include/thirdparties/freetype/freetype/internal/
t1types.h 88 FT_UShort fs_type; member in struct:PS_FontExtraRec_
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/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
  /bionic/libc/kernel/uapi/linux/
msdos_fs.h 132 __u8 fs_type[8]; member in struct:fat_boot_sector::__anon602::__anon603
151 __u8 fs_type[8]; member in struct:fat_boot_sector::__anon602::__anon604
  /bootable/recovery/updater/
install.c 88 // mount(fs_type, partition_type, location, mount_point)
90 // fs_type="yaffs2" partition_type="MTD" location=partition
91 // fs_type="ext4" partition_type="EMMC" location=device
97 char* fs_type; local
105 if (ReadArgs(state, argv, 5, &fs_type, &partition_type,
111 if (ReadArgs(state, argv, 4, &fs_type, &partition_type,
117 if (strlen(fs_type) == 0) {
118 ErrorAbort(state, "fs_type argument to %s() can't be empty", name);
159 if (mtd_mount_partition(mtd, mount_point, fs_type, 0 /* rw */) != 0) {
167 if (mount(location, mount_point, fs_type,
278 char* fs_type; local
    [all...]
  /external/chromium_org/crypto/
nss_util.cc 152 base::FileSystemType fs_type = base::FILE_SYSTEM_UNKNOWN; local
153 if (base::GetFileSystemType(database_dir, &fs_type))
154 db_on_nfs = (fs_type == base::FILE_SYSTEM_NFS);
    [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/kernel-headers/original/uapi/linux/
msdos_fs.h 136 __u8 fs_type[8]; /* file system type */ member in struct:fat_boot_sector::__anon26979::__anon26980
159 __u8 fs_type[8]; /* file system type */ member in struct:fat_boot_sector::__anon26979::__anon26981
  /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...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/linux/
msdos_fs.h 132 __u8 fs_type[8]; member in struct:fat_boot_sector::__anon74419::__anon74420
151 __u8 fs_type[8]; member in struct:fat_boot_sector::__anon74419::__anon74421
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/linux/
msdos_fs.h 132 __u8 fs_type[8]; member in struct:fat_boot_sector::__anon75728::__anon75729
151 __u8 fs_type[8]; member in struct:fat_boot_sector::__anon75728::__anon75730
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/linux/
msdos_fs.h 132 __u8 fs_type[8]; member in struct:fat_boot_sector::__anon77036::__anon77037
151 __u8 fs_type[8]; member in struct:fat_boot_sector::__anon77036::__anon77038
  /system/vold/
cryptfs.c 1544 char fs_type[32]; local
2851 int fs_type = get_fs_type(rec); local
    [all...]

Completed in 922 milliseconds