/aosp12/frameworks/base/core/java/android/os/storage/ |
H A D | VolumeInfo.java | 171 public String fsLabel; field in VolumeInfo 199 fsLabel = parcel.readString8(); in VolumeInfo() 214 this.fsLabel = volumeInfo.fsLabel; in VolumeInfo() 288 } else if (!TextUtils.isEmpty(fsLabel)) { in getDescription() 289 return fsLabel; in getDescription() 523 pw.printPair("fsLabel", fsLabel); in dump() 591 parcel.writeString8(fsLabel); in writeToParcel()
|
/aosp12/system/vold/model/ |
H A D | StubVolume.cpp | 31 const std::string& fsLabel) in StubVolume() argument 37 mFsLabel(fsLabel) { in StubVolume()
|
H A D | StubVolume.h | 35 const std::string& fsType, const std::string& fsUuid, const std::string& fsLabel);
|
/aosp12/system/vold/binder/android/os/ |
H A D | IVoldListener.aidl | 31 @utf8InCpp String fsType, @utf8InCpp String fsUuid, @utf8InCpp String fsLabel); in onVolumeMetadataChanged() argument
|
H A D | IVold.aidl | 137 @utf8InCpp String fsUuid, @utf8InCpp String fsLabel, int flags); in createStubVolume() argument
|
/aosp12/system/vold/ |
H A D | Utils.h | 101 std::string* fsLabel); 105 std::string* fsLabel);
|
H A D | Utils.cpp | 629 std::string* fsLabel, bool untrusted) { in readMetadata() argument 632 fsLabel->clear(); in readMetadata() 657 FindValue(line, "LABEL", fsLabel); in readMetadata() 664 std::string* fsLabel) { in ReadMetadata() argument 665 return readMetadata(path, fsType, fsUuid, fsLabel, false); in ReadMetadata() 669 std::string* fsLabel) { in ReadMetadataUntrusted() argument 670 return readMetadata(path, fsType, fsUuid, fsLabel, true); in ReadMetadataUntrusted()
|
H A D | VolumeManager.h | 195 const std::string& fsLabel, int32_t flags, std::string* outVolId);
|
H A D | VoldNativeService.h | 82 const std::string& fsLabel, int32_t flags,
|
H A D | VoldNativeService.cpp | 446 const std::string& fsLabel, int32_t flags, in createStubVolume() argument 457 sourcePath, mountPath, fsType, fsUuid, fsLabel, flags, _aidl_return)); in createStubVolume()
|
H A D | VolumeManager.cpp | 1129 const std::string& fsLabel, int32_t flags, in createStubVolume() argument 1133 new android::vold::StubVolume(stubId, sourcePath, mountPath, fsType, fsUuid, fsLabel)); in createStubVolume()
|
/aosp12/frameworks/base/services/core/java/com/android/server/ |
H A D | StorageManagerService.java | 1464 String fsLabel) { 1470 vol.fsLabel = fsLabel;
|