/system/vold/model/ |
D | StubVolume.cpp | 30 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
|
D | StubVolume.h | 35 const std::string& fsType, const std::string& fsUuid, const std::string& fsLabel); 43 status_t doFormat(const std::string& fsType) override;
|
D | PrivateVolume.cpp | 212 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()
|
D | PublicVolume.cpp | 313 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()
|
D | VolumeBase.h | 111 status_t format(const std::string& fsType); 125 virtual status_t doFormat(const std::string& fsType);
|
D | VolumeBase.cpp | 262 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
|
D | PublicVolume.h | 50 status_t doFormat(const std::string& fsType) override;
|
D | PrivateVolume.h | 54 status_t doFormat(const std::string& fsType) override;
|
D | Disk.cpp | 414 std::string fsType; in readPartitions() local 416 if (ReadMetadataUntrusted(mDevPath, &fsType, &unused, &unused) == OK) { in readPartitions()
|
/system/vold/ |
D | Utils.h | 97 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);
|
D | Utils.cpp | 622 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()
|
D | VoldNativeService.h | 59 binder::Status format(const std::string& volId, const std::string& fsType); 79 const std::string& fsType, const std::string& fsUuid,
|
D | VoldNativeService.cpp | 306 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()
|
D | VolumeManager.h | 188 const std::string& fsType, const std::string& fsUuid,
|
D | VolumeManager.cpp | 1126 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/ |
D | IVoldListener.aidl | 31 @utf8InCpp String fsType, @utf8InCpp String fsUuid, @utf8InCpp String fsLabel); in onVolumeMetadataChanged() argument
|
D | IVold.aidl | 49 void format(@utf8InCpp String volId, @utf8InCpp String fsType); in format() argument 131 @utf8InCpp String mountPath, @utf8InCpp String fsType, in createStubVolume() argument
|