Home
last modified time | relevance | path

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

/system/vold/model/
DStubVolume.cpp28 const std::string& fsType, const std::string& fsUuid, in StubVolume() argument
33 mFsType(fsType), in StubVolume()
62 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.cpp177 status_t PrivateVolume::doFormat(const std::string& fsType) { in doFormat() argument
178 std::string resolvedFsType = fsType; in doFormat()
179 if (fsType == "auto") { in doFormat()
203 LOG(ERROR) << getId() << " unsupported filesystem " << fsType; in doFormat()
DPublicVolume.cpp255 status_t PublicVolume::doFormat(const std::string& fsType) { in doFormat() argument
261 if (fsType == "auto" && useVfat && useExfat) { in doFormat()
276 } else if (fsType == "vfat") { in doFormat()
278 } else if (fsType == "exfat") { in doFormat()
283 LOG(ERROR) << "Unsupported filesystem " << fsType; in doFormat()
DVolumeBase.h108 status_t format(const std::string& fsType);
119 virtual status_t doFormat(const std::string& fsType);
DVolumeBase.cpp246 status_t VolumeBase::format(const std::string& fsType) { in format() argument
257 status_t res = doFormat(fsType); in format()
262 status_t VolumeBase::doFormat(const std::string& fsType) { in doFormat() argument
DPublicVolume.h50 status_t doFormat(const std::string& fsType) override;
DPrivateVolume.h51 status_t doFormat(const std::string& fsType) override;
DDisk.cpp390 std::string fsType; in readPartitions() local
392 if (ReadMetadataUntrusted(mDevPath, &fsType, &unused, &unused) == OK) { in readPartitions()
/system/vold/
DUtils.h72 status_t ReadMetadata(const std::string& path, std::string* fsType, std::string* fsUuid,
76 status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType, std::string* fsUuid,
107 bool IsFilesystemSupported(const std::string& fsType);
DUtils.cpp268 static status_t readMetadata(const std::string& path, std::string* fsType, std::string* fsUuid, in readMetadata() argument
270 fsType->clear(); in readMetadata()
295 FindValue(line, "TYPE", fsType); in readMetadata()
303 status_t ReadMetadata(const std::string& path, std::string* fsType, std::string* fsUuid, in ReadMetadata() argument
305 return readMetadata(path, fsType, fsUuid, fsLabel, false); in ReadMetadata()
308 status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType, std::string* fsUuid, in ReadMetadataUntrusted() argument
310 return readMetadata(path, fsType, fsUuid, fsLabel, true); in ReadMetadataUntrusted()
630 bool IsFilesystemSupported(const std::string& fsType) { in IsFilesystemSupported() argument
636 return supported.find(fsType + "\n") != std::string::npos; in IsFilesystemSupported()
DVoldNativeService.h57 binder::Status format(const std::string& volId, const std::string& fsType);
73 const std::string& fsType, const std::string& fsUuid,
DVoldNativeService.cpp294 binder::Status VoldNativeService::format(const std::string& volId, const std::string& fsType) { in format() argument
303 return translate(vol->format(fsType)); in format()
398 const std::string& sourcePath, const std::string& mountPath, const std::string& fsType, in createStubVolume() argument
408 return translate(VolumeManager::Instance()->createStubVolume(sourcePath, mountPath, fsType, in createStubVolume()
DVolumeManager.h126 const std::string& fsType, const std::string& fsUuid,
DVolumeManager.cpp717 const std::string& fsType, const std::string& fsUuid, in createStubVolume() argument
721 new android::vold::StubVolume(id, 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.aidl46 void format(@utf8InCpp String volId, @utf8InCpp String fsType); in format() argument
125 @utf8InCpp String mountPath, @utf8InCpp String fsType, in createStubVolume() argument