Home
last modified time | relevance | path

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

/system/vold/model/
DStubVolume.cpp30 const std::string& fsType, const std::string& fsUuid, in StubVolume() argument
35 mFsType(fsType), in StubVolume()
64 status_t StubVolume::doFormat(const std::string& fsType) { in doFormat() argument
DStubVolume.h35 const std::string& fsType, const std::string& fsUuid, const std::string& fsLabel);
43 status_t doFormat(const std::string& fsType) override;
DPrivateVolume.cpp212 status_t PrivateVolume::doFormat(const std::string& fsType) { in doFormat() argument
213 std::string resolvedFsType = fsType; in doFormat()
214 if (fsType == "auto") { in doFormat()
240 LOG(ERROR) << getId() << " unsupported filesystem " << fsType; in doFormat()
DPublicVolume.cpp313 status_t PublicVolume::doFormat(const std::string& fsType) { in doFormat() argument
319 if (fsType == "auto" && useVfat && useExfat) { in doFormat()
334 } else if (fsType == "vfat") { in doFormat()
336 } else if (fsType == "exfat") { in doFormat()
341 LOG(ERROR) << "Unsupported filesystem " << fsType; in doFormat()
DVolumeBase.h111 status_t format(const std::string& fsType);
125 virtual status_t doFormat(const std::string& fsType);
DVolumeBase.cpp262 status_t VolumeBase::format(const std::string& fsType) { in format() argument
273 status_t res = doFormat(fsType); in format()
278 status_t VolumeBase::doFormat(const std::string& fsType) { in doFormat() argument
DPublicVolume.h50 status_t doFormat(const std::string& fsType) override;
DPrivateVolume.h54 status_t doFormat(const std::string& fsType) override;
DDisk.cpp414 std::string fsType; in readPartitions() local
416 if (ReadMetadataUntrusted(mDevPath, &fsType, &unused, &unused) == OK) { in readPartitions()
/system/vold/
DUtils.h97 status_t ReadMetadata(const std::string& path, std::string* fsType, std::string* fsUuid,
101 status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType, std::string* fsUuid,
132 bool IsFilesystemSupported(const std::string& fsType);
DUtils.cpp622 static status_t readMetadata(const std::string& path, std::string* fsType, std::string* fsUuid, in readMetadata() argument
624 fsType->clear(); in readMetadata()
649 FindValue(line, "TYPE", fsType); in readMetadata()
657 status_t ReadMetadata(const std::string& path, std::string* fsType, std::string* fsUuid, in ReadMetadata() argument
659 return readMetadata(path, fsType, fsUuid, fsLabel, false); in ReadMetadata()
662 status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType, std::string* fsUuid, in ReadMetadataUntrusted() argument
664 return readMetadata(path, fsType, fsUuid, fsLabel, true); in ReadMetadataUntrusted()
997 bool IsFilesystemSupported(const std::string& fsType) { in IsFilesystemSupported() argument
1003 return supported.find(fsType + "\n") != std::string::npos; in IsFilesystemSupported()
DVoldNativeService.h59 binder::Status format(const std::string& volId, const std::string& fsType);
79 const std::string& fsType, const std::string& fsUuid,
DVoldNativeService.cpp306 binder::Status VoldNativeService::format(const std::string& volId, const std::string& fsType) { in format() argument
315 return translate(vol->format(fsType)); in format()
438 const std::string& fsType, in createStubVolume() argument
451 sourcePath, mountPath, fsType, fsUuid, fsLabel, flags, _aidl_return)); in createStubVolume()
DVolumeManager.h188 const std::string& fsType, const std::string& fsUuid,
DVolumeManager.cpp1126 const std::string& fsType, const std::string& fsUuid, in createStubVolume() argument
1131 new android::vold::StubVolume(stubId, sourcePath, mountPath, fsType, fsUuid, fsLabel)); in createStubVolume()
/system/vold/binder/android/os/
DIVoldListener.aidl31 @utf8InCpp String fsType, @utf8InCpp String fsUuid, @utf8InCpp String fsLabel); in onVolumeMetadataChanged() argument
DIVold.aidl49 void format(@utf8InCpp String volId, @utf8InCpp String fsType); in format() argument
131 @utf8InCpp String mountPath, @utf8InCpp String fsType, in createStubVolume() argument