Searched refs:mFsUuid (Results 1 – 10 of 10) sorted by relevance
/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/ |
H A D | MissingStorageFragment.java | 37 private String mFsUuid; field in MissingStorageFragment 46 mFsUuid = getArguments().getString(VolumeRecord.EXTRA_FS_UUID); in onCreate() 55 if (mStorageManager.findRecordByUuid(mFsUuid) == null) { in onResume() 57 Log.i(TAG, "FsUuid " + mFsUuid + " vanished upon resuming"); in onResume() 67 final VolumeRecord record = mStorageManager.findRecordByUuid(mFsUuid); in onCreatePreferences() 76 ForgetPrivateConfirmFragment.prepareArgs(forget.getExtras(), mFsUuid); in refresh() local 83 if (!TextUtils.equals(fsUuid, mFsUuid) || !isResumed()) { in onVolumeForgotten() 88 Log.i(TAG, "FsUuid " + mFsUuid + " vanished while resumed"); in onVolumeForgotten() 96 if (TextUtils.equals(rec.getFsUuid(), mFsUuid) && isResumed()) { in onVolumeRecordChanged()
|
H A D | NewStorageActivity.java | 264 private String mFsUuid; field in NewStorageActivity.MissingStorageFragment 287 mFsUuid = getArguments().getString(VolumeRecord.EXTRA_FS_UUID); in onCreate() 288 if (TextUtils.isEmpty(mFsUuid)) { in onCreate() 292 final VolumeRecord volumeRecord = storageManager.findRecordByUuid(mFsUuid); in onCreate() 343 if (!TextUtils.equals(info.getFsUuid(), mFsUuid)) { in checkForRemount()
|
/aosp12/frameworks/base/core/java/android/os/storage/ |
H A D | StorageVolume.java | 106 private final String mFsUuid; field in StorageVolume 153 mFsUuid = fsUuid; in StorageVolume() 173 mFsUuid = in.readString8(); in StorageVolume() 324 return mFsUuid; in getUuid() 352 return normalizeUuid(mFsUuid); in getNormalizedUuid() 362 if (mFsUuid == null || mFsUuid.length() != 9) { in getFatVolumeId() 458 : mFsUuid; in createOpenDocumentTreeIntent() 484 if (mFsUuid != null) { in toString() 485 buffer.append(" (").append(mFsUuid).append(")"); in toString() 512 pw.printPair("mFsUuid", mFsUuid); in dump() [all …]
|
/aosp12/system/vold/model/ |
H A D | PublicVolume.cpp | 60 status_t res = ReadMetadataUntrusted(mDevPath, &mFsType, &mFsUuid, &mFsLabel); in readMetadata() 63 if (listener) listener->onVolumeMetadataChanged(getId(), mFsType, mFsUuid, mFsLabel); in readMetadata() 120 if (!mFsUuid.empty()) { in doMount() 121 stableName = mFsUuid; in doMount() 273 if (!mFsUuid.empty()) { in doUnmount() 274 stableName = mFsUuid; in doUnmount()
|
H A D | PrivateVolume.cpp | 59 status_t res = ReadMetadata(mDmDevPath, &mFsType, &mFsUuid, &mFsLabel); in readMetadata() 62 if (listener) listener->onVolumeMetadataChanged(getId(), mFsType, mFsUuid, mFsLabel); in readMetadata() 126 mPath = StringPrintf("/mnt/expand/%s", mFsUuid.c_str()); in doMount() 195 new EmulatedVolume(mediaPath, mRawDevice, mFsUuid, user)); in doPostMount()
|
H A D | StubVolume.cpp | 36 mFsUuid(fsUuid), in StubVolume() 53 if (listener) listener->onVolumeMetadataChanged(getId(), mFsType, mFsUuid, mFsLabel); in doMount()
|
H A D | PrivateVolume.h | 45 const std::string& getFsUuid() const { return mFsUuid; }; in getFsUuid() 74 std::string mFsUuid; variable
|
H A D | StubVolume.h | 49 const std::string mFsUuid; variable
|
H A D | PublicVolume.h | 77 std::string mFsUuid; variable
|
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 42317 Landroid/os/storage/StorageVolume;->mFsUuid:Ljava/lang/String;
|