Searched refs:fsType (Results 1 – 10 of 10) sorted by relevance
/system/vold/ |
D | PrivateVolume.cpp | 191 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()
|
D | PublicVolume.cpp | 229 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()
|
D | Utils.cpp | 185 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()
|
D | Utils.h | 62 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);
|
D | VolumeBase.cpp | 235 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
|
D | VolumeBase.h | 102 status_t format(const std::string& fsType); 111 virtual status_t doFormat(const std::string& fsType);
|
D | PrivateVolume.h | 48 status_t doFormat(const std::string& fsType) override;
|
D | PublicVolume.h | 50 status_t doFormat(const std::string& fsType) override;
|
D | Disk.cpp | 357 std::string fsType; in readPartitions() local 359 if (ReadMetadataUntrusted(mDevPath, fsType, unused, unused) == OK) { in readPartitions()
|
D | CommandListener.cpp | 241 std::string fsType(argv[3]); in runCommand() local 247 return sendGenericOkFail(cli, vol->format(fsType)); in runCommand()
|