Searched defs:fsType (Results 1 - 5 of 5) sorted by relevance

/system/vold/
H A DPublicVolume.cpp229 status_t PublicVolume::doFormat(const std::string& fsType) { argument
230 if (fsType == "vfat" || fsType == "auto") {
239 LOG(ERROR) << "Unsupported filesystem " << fsType;
H A DPrivateVolume.cpp191 status_t PrivateVolume::doFormat(const std::string& fsType) { argument
192 std::string resolvedFsType = fsType;
193 if (fsType == "auto") {
216 LOG(ERROR) << getId() << " unsupported filesystem " << fsType;
H A DVolumeBase.cpp235 status_t VolumeBase::format(const std::string& fsType) { argument
246 status_t res = doFormat(fsType);
251 status_t VolumeBase::doFormat(const std::string& fsType) { argument
H A DDisk.cpp357 std::string fsType; local
359 if (ReadMetadataUntrusted(mDevPath, fsType, unused, unused) == OK) {
H A DUtils.cpp185 static status_t readMetadata(const std::string& path, std::string& fsType, argument
187 fsType.clear();
216 fsType = value;
233 status_t ReadMetadata(const std::string& path, std::string& fsType, argument
235 return readMetadata(path, fsType, fsUuid, fsLabel, false);
238 status_t ReadMetadataUntrusted(const std::string& path, std::string& fsType, argument
240 return readMetadata(path, fsType, fsUuid, fsLabel, true);
508 bool IsFilesystemSupported(const std::string& fsType) { argument
514 return supported.find(fsType + "\n") != std::string::npos;

Completed in 68 milliseconds