Home
last modified time | relevance | path

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

/system/vold/
DVolumeManager.h146 int createAsec(const char *id, unsigned long numSectors, const char *fstype,
DVolumeManager.cpp764 int VolumeManager::createAsec(const char *id, unsigned long numSectors, const char *fstype, in createAsec() argument
775 const bool wantFilesystem = strcmp(fstype, "none"); in createAsec()
778 usingExt4 = !strcmp(fstype, "ext4"); in createAsec()
781 } else if (strcmp(fstype, "fat")) { in createAsec()
782 SLOGE("Invalid filesystem type %s", fstype); in createAsec()
/system/update_engine/common/
Dutils.cc679 for (const char* fstype : fstypes) { in MountFilesystem() local
680 int rc = mount(device.c_str(), mountpoint.c_str(), fstype, mountflags, in MountFilesystem()
686 << " on " << mountpoint << " as " << fstype; in MountFilesystem()