/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 | 310 status_t PublicVolume::doFormat(const std::string& fsType) { in doFormat() argument 316 if (fsType == "auto" && useVfat && useExfat) { in doFormat() 331 } else if (fsType == "vfat") { in doFormat() 333 } else if (fsType == "exfat") { in doFormat() 338 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/binder/android/os/ |
D | IVold.aidl | 49 void format(@utf8InCpp String volId, @utf8InCpp String fsType); in format() argument 92 …pp String blkDevice, @utf8InCpp String mountPoint, boolean shouldFormat, @utf8InCpp String fsType); in encryptFstab() argument 136 @utf8InCpp String mountPath, @utf8InCpp String fsType, in createStubVolume() argument
|
D | IVoldListener.aidl | 31 @utf8InCpp String fsType, @utf8InCpp String fsUuid, @utf8InCpp String fsLabel); in onVolumeMetadataChanged() argument
|
/system/vold/ |
D | Utils.h | 99 status_t ReadMetadata(const std::string& path, std::string* fsType, std::string* fsUuid, 103 status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType, std::string* fsUuid, 134 bool IsFilesystemSupported(const std::string& fsType);
|
D | VoldNativeService.h | 59 binder::Status format(const std::string& volId, const std::string& fsType); 81 const std::string& fsType, const std::string& fsUuid, 117 bool shouldFormat, const std::string& fsType);
|
D | VoldNativeService.cpp | 305 binder::Status VoldNativeService::format(const std::string& volId, const std::string& fsType) { in format() argument 314 return translate(vol->format(fsType)); in format() 444 const std::string& fsType, in createStubVolume() argument 457 sourcePath, mountPath, fsType, fsUuid, fsLabel, flags, _aidl_return)); in createStubVolume() 699 const std::string& fsType) { in encryptFstab() argument 704 fscrypt_mount_metadata_encrypted(blkDevice, mountPoint, true, shouldFormat, fsType)); in encryptFstab()
|
D | Utils.cpp | 628 static status_t readMetadata(const std::string& path, std::string* fsType, std::string* fsUuid, in readMetadata() argument 630 fsType->clear(); in readMetadata() 655 FindValue(line, "TYPE", fsType); in readMetadata() 663 status_t ReadMetadata(const std::string& path, std::string* fsType, std::string* fsUuid, in ReadMetadata() argument 665 return readMetadata(path, fsType, fsUuid, fsLabel, false); in ReadMetadata() 668 status_t ReadMetadataUntrusted(const std::string& path, std::string* fsType, std::string* fsUuid, in ReadMetadataUntrusted() argument 670 return readMetadata(path, fsType, fsUuid, fsLabel, true); in ReadMetadataUntrusted() 1000 bool IsFilesystemSupported(const std::string& fsType) { in IsFilesystemSupported() argument 1006 return supported.find(fsType + "\n") != std::string::npos; in IsFilesystemSupported()
|
D | VolumeManager.h | 194 const std::string& fsType, const std::string& fsUuid,
|
D | VolumeManager.cpp | 1128 const std::string& fsType, const std::string& fsUuid, in createStubVolume() argument 1133 new android::vold::StubVolume(stubId, sourcePath, mountPath, fsType, fsUuid, fsLabel)); in createStubVolume()
|