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

  /external/toybox/toys/other/
blkid.c 36 static const struct fstype fstypes[] = { variable in typeref:struct:fstype
75 for (i=0; i < sizeof(fstypes)/sizeof(struct fstype); i++) {
79 if (fstypes[i].magic_offset > off+sizeof(toybuf)) {
83 if (fstypes[i].magic_offset < off) continue;
87 for (j = 0; j < fstypes[i].magic_len; j++)
88 test += ((uint64_t)toybuf[j+fstypes[i].magic_offset-off])<<(8*j);
89 if (test == fstypes[i].magic) break;
92 if (i == ARRAY_LEN(fstypes)) {
101 type = fstypes[i].name;
118 if (fstypes[i].label_len)
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixFileStore.java 162 // lookup fstypes.properties
206 // -- fstypes.properties --
255 String fstypes = System.getProperty("java.home") + "/lib/fstypes.properties"; local
256 Path file = Paths.get(fstypes);
  /system/update_engine/common/
utils.cc 663 vector<const char*> fstypes; local
665 fstypes = {"ext2", "ext3", "ext4", "squashfs"};
667 fstypes = {type.c_str()};
669 for (const char* fstype : fstypes) {
    [all...]

Completed in 635 milliseconds