Home
last modified time | relevance | path

Searched refs:fstype (Results 1 – 3 of 3) sorted by relevance

/system/vold/
DVolumeManager.h149 int createAsec(const char *id, unsigned long numSectors, const char *fstype,
DVolumeManager.cpp845 int VolumeManager::createAsec(const char *id, unsigned long numSectors, const char *fstype, in createAsec() argument
856 const bool wantFilesystem = strcmp(fstype, "none"); in createAsec()
859 usingExt4 = !strcmp(fstype, "ext4"); in createAsec()
862 } else if (strcmp(fstype, "fat")) { in createAsec()
863 SLOGE("Invalid filesystem type %s", fstype); in createAsec()
/system/update_engine/common/
Dutils.cc669 for (const char* fstype : fstypes) { in MountFilesystem() local
670 int rc = mount(device.c_str(), mountpoint.c_str(), fstype, mountflags, in MountFilesystem()
676 << " on " << mountpoint << " as " << fstype; in MountFilesystem()