/system/vold/model/ |
D | StubVolume.cpp | 28 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
|
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 | 177 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()
|
D | PublicVolume.cpp | 255 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()
|
D | VolumeBase.h | 108 status_t format(const std::string& fsType); 119 virtual status_t doFormat(const std::string& fsType);
|
D | VolumeBase.cpp | 246 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
|
D | PublicVolume.h | 50 status_t doFormat(const std::string& fsType) override;
|
D | PrivateVolume.h | 51 status_t doFormat(const std::string& fsType) override;
|
D | Disk.cpp | 390 std::string fsType; in readPartitions() local 392 if (ReadMetadataUntrusted(mDevPath, &fsType, &unused, &unused) == OK) { in readPartitions()
|
/system/vold/ |
D | Utils.h | 72 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);
|
D | Utils.cpp | 268 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()
|
D | VoldNativeService.h | 57 binder::Status format(const std::string& volId, const std::string& fsType); 73 const std::string& fsType, const std::string& fsUuid,
|
D | VoldNativeService.cpp | 294 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()
|
D | VolumeManager.h | 126 const std::string& fsType, const std::string& fsUuid,
|
D | VolumeManager.cpp | 717 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/ |
D | IVoldListener.aidl | 31 @utf8InCpp String fsType, @utf8InCpp String fsUuid, @utf8InCpp String fsLabel); in onVolumeMetadataChanged() argument
|
D | IVold.aidl | 46 void format(@utf8InCpp String volId, @utf8InCpp String fsType); in format() argument 125 @utf8InCpp String mountPath, @utf8InCpp String fsType, in createStubVolume() argument
|