Home
last modified time | relevance | path

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

/packages/providers/MediaProvider/src/com/android/providers/media/
DMediaScannerService.java58 private void openDatabase(String volumeName) { in openDatabase() argument
61 values.put("name", volumeName); in openDatabase()
87 private void scan(String[] directories, String volumeName) { in scan() argument
94 values.put(MediaStore.MEDIA_SCANNER_VOLUME, volumeName); in scan()
100 if (volumeName.equals(MediaProvider.EXTERNAL_VOLUME)) { in scan()
101 openDatabase(volumeName); in scan()
105 scanner.scanDirectories(directories, volumeName); in scan()
190 String volumeName = MediaProvider.EXTERNAL_VOLUME; in scanFile() local
191 openDatabase(volumeName); in scanFile()
196 return scanner.scanSingleFile(canonicalPath, volumeName, mimeType); in scanFile()
DMediaProvider.java3415 final String volumeName = getVolumeName(uri); in insertInternal() local
3458 getContext(), volumeName, FileColumns.MEDIA_TYPE_IMAGE, rowId); in insertInternal() local
3460 Images.Media.getContentUri(volumeName), rowId); in insertInternal()
3473 getContentUri(volumeName), rowId); in insertInternal()
3486 getContentUri(volumeName), rowId); in insertInternal()
3496 getContext(), volumeName, FileColumns.MEDIA_TYPE_AUDIO, rowId); in insertInternal() local
3498 Audio.Media.getContentUri(volumeName), rowId); in insertInternal()
3536 Audio.Genres.getContentUri(volumeName), rowId); in insertInternal()
3560 Audio.Playlists.getContentUri(volumeName), rowId); in insertInternal()
3583 getContext(), volumeName, FileColumns.MEDIA_TYPE_VIDEO, rowId); in insertInternal() local
[all …]
DMediaDocumentsProvider.java124 static void onMediaStoreInsert(Context context, String volumeName, int type, long id) { in onMediaStoreInsert() argument
125 if (!"external".equals(volumeName)) return; in onMediaStoreInsert()
142 static void onMediaStoreDelete(Context context, String volumeName, int type, long id) { in onMediaStoreDelete() argument
143 if (!"external".equals(volumeName)) return; in onMediaStoreDelete()
/packages/apps/Settings/src/com/android/settings/deviceinfo/
DStorageWizardMoveConfirm.java58 final String volumeName = mStorage.getBestVolumeDescription(mVolume); in onCreate() local
62 setBodyText(R.string.storage_wizard_move_confirm_body, appName, volumeName); in onCreate()
DStorageWizardMoveProgress.java47 final String volumeName = mStorage.getBestVolumeDescription(mVolume); in onCreate() local
51 setBodyText(R.string.storage_wizard_move_progress_body, volumeName, appName); in onCreate()