Searched refs:mExternalDirsForApp (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/os/ |
D | Environment.java | 89 private final File[] mExternalDirsForApp; field in Environment.UserEnvironment 145 mExternalDirsForApp = externalForApp.toArray(new File[externalForApp.size()]); in UserEnvironment() 150 return mExternalDirsForApp[0]; in getExternalStorageDirectory() 163 return mExternalDirsForApp; in getExternalDirsForApp() 171 return buildPaths(mExternalDirsForApp, type); in buildExternalStoragePublicDirs() 175 return buildPaths(mExternalDirsForApp, DIR_ANDROID, DIR_DATA); in buildExternalStorageAndroidDataDirs() 179 return buildPaths(mExternalDirsForApp, DIR_ANDROID, DIR_OBB); in buildExternalStorageAndroidObbDirs() 183 return buildPaths(mExternalDirsForApp, DIR_ANDROID, DIR_DATA, packageName); in buildExternalStorageAppDataDirs() 191 return buildPaths(mExternalDirsForApp, DIR_ANDROID, DIR_MEDIA, packageName); in buildExternalStorageAppMediaDirs() 199 return buildPaths(mExternalDirsForApp, DIR_ANDROID, DIR_OBB, packageName); in buildExternalStorageAppObbDirs() [all …]
|