Home
last modified time | relevance | path

Searched refs:defaultScopedStorage (Results 1 – 1 of 1) sorted by relevance

/aosp14/frameworks/base/core/java/android/os/
H A DEnvironment.java1442 boolean defaultScopedStorage = Compatibility.isChangeEnabled(DEFAULT_SCOPED_STORAGE); in isExternalStorageLegacy()
1447 if (isScopedStorageEnforced(defaultScopedStorage, forceEnableScopedStorage)) { in isExternalStorageLegacy()
1452 if (isScopedStorageDisabled(defaultScopedStorage, forceEnableScopedStorage)) { in isExternalStorageLegacy()
1470 private static boolean isScopedStorageEnforced(boolean defaultScopedStorage, in isScopedStorageEnforced() argument
1472 return defaultScopedStorage && forceEnableScopedStorage; in isScopedStorageEnforced()
1475 private static boolean isScopedStorageDisabled(boolean defaultScopedStorage, in isScopedStorageDisabled() argument
1477 return !defaultScopedStorage && !forceEnableScopedStorage; in isScopedStorageDisabled()