Home
last modified time | relevance | path

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

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DOpenExternalDirectoryActivity.java122 String directoryName = intent.getStringExtra(EXTRA_DIRECTORY_NAME ); in onCreate() local
123 if (directoryName == null) { in onCreate()
124 directoryName = DIRECTORY_ROOT; in onCreate()
128 volume.getUuid(), directoryName) == PERMISSION_NEVER_ASK) { in onCreate()
129 logValidScopedAccessRequest(this, directoryName, in onCreate()
137 if (!showFragment(this, userId, volume, directoryName)) { in onCreate()
157 StorageVolume storageVolume, String directoryName) { in showFragment() argument
160 + directoryName + ", and user " + userId); in showFragment()
161 final boolean isRoot = directoryName.equals(DIRECTORY_ROOT); in showFragment()
172 file = isRoot ? volumeRoot : new File(volumeRoot, directoryName).getCanonicalFile(); in showFragment()
[all …]
/frameworks/base/core/java/android/os/storage/
DStorageVolume.java341 public @Nullable Intent createAccessIntent(String directoryName) { in createAccessIntent() argument
342 if ((isPrimary() && directoryName == null) || in createAccessIntent()
343 (directoryName != null && !Environment.isStandardDirectory(directoryName))) { in createAccessIntent()
348 intent.putExtra(EXTRA_DIRECTORY_NAME, directoryName); in createAccessIntent()
/frameworks/ex/common/java/com/android/common/contacts/
DBaseEmailAddressAdapter.java293 protected abstract void bindView(View view, String directoryType, String directoryName, in bindView() argument
305 protected abstract void bindViewLoading(View view, String directoryType, String directoryName); in bindViewLoading() argument
328 String directoryName = directoryPartition.displayName; in bindView() local
330 bindViewLoading(v, directoryType, directoryName); in bindView()
338 bindView(v, directoryType, directoryName, displayName, emailAddress); in bindView()
/frameworks/base/media/java/android/media/
DMiniThumbFile.java82 String directoryName = in randomAccessFilePath() local
85 return directoryName + "/.thumbdata" + version + "-" + mUri.hashCode(); in randomAccessFilePath()