Home
last modified time | relevance | path

Searched refs:fsType (Results 1 – 10 of 10) sorted by relevance

/system/vold/
DPrivateVolume.cpp191 status_t PrivateVolume::doFormat(const std::string& fsType) { in doFormat() argument
192 std::string resolvedFsType = fsType; in doFormat()
193 if (fsType == "auto") { in doFormat()
216 LOG(ERROR) << getId() << " unsupported filesystem " << fsType; in doFormat()
DPublicVolume.cpp229 status_t PublicVolume::doFormat(const std::string& fsType) { in doFormat() argument
230 if (fsType == "vfat" || fsType == "auto") { in doFormat()
239 LOG(ERROR) << "Unsupported filesystem " << fsType; in doFormat()
DUtils.cpp185 static status_t readMetadata(const std::string& path, std::string& fsType, in readMetadata() argument
187 fsType.clear(); in readMetadata()
216 fsType = value; in readMetadata()
233 status_t ReadMetadata(const std::string& path, std::string& fsType, in ReadMetadata() argument
235 return readMetadata(path, fsType, fsUuid, fsLabel, false); in ReadMetadata()
238 status_t ReadMetadataUntrusted(const std::string& path, std::string& fsType, in ReadMetadataUntrusted() argument
240 return readMetadata(path, fsType, fsUuid, fsLabel, true); in ReadMetadataUntrusted()
508 bool IsFilesystemSupported(const std::string& fsType) { in IsFilesystemSupported() argument
514 return supported.find(fsType + "\n") != std::string::npos; in IsFilesystemSupported()
DUtils.h62 status_t ReadMetadata(const std::string& path, std::string& fsType,
66 status_t ReadMetadataUntrusted(const std::string& path, std::string& fsType,
92 bool IsFilesystemSupported(const std::string& fsType);
DVolumeBase.cpp235 status_t VolumeBase::format(const std::string& fsType) { in format() argument
246 status_t res = doFormat(fsType); in format()
251 status_t VolumeBase::doFormat(const std::string& fsType) { in doFormat() argument
DVolumeBase.h102 status_t format(const std::string& fsType);
111 virtual status_t doFormat(const std::string& fsType);
DPrivateVolume.h48 status_t doFormat(const std::string& fsType) override;
DPublicVolume.h50 status_t doFormat(const std::string& fsType) override;
DDisk.cpp357 std::string fsType; in readPartitions() local
359 if (ReadMetadataUntrusted(mDevPath, fsType, unused, unused) == OK) { in readPartitions()
DCommandListener.cpp241 std::string fsType(argv[3]); in runCommand() local
247 return sendGenericOkFail(cli, vol->format(fsType)); in runCommand()