Home
last modified time | relevance | path

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

/packages/providers/MediaProvider/tests/src/com/android/providers/media/photopicker/
DPhotoPickerActivityTest.java45 intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true); in testGetDocumentsUiForwardingIntent()
56 assertThat(getContentIntent.getBooleanExtra(Intent.EXTRA_LOCAL_ONLY, false)).isTrue(); in testGetDocumentsUiForwardingIntent()
DPickerDataLayerTest.java704 syncExtrasBundle.putBoolean(MediaStore.EXTRA_LOCAL_ONLY, true); in testInitMediaDataInvalidData()
804 syncRequestExtras.putBoolean(MediaStore.EXTRA_LOCAL_ONLY, false); in buildDefaultSyncRequestBundle()
/packages/providers/MediaProvider/photopicker/src/com/android/photopicker/data/
DMediaProviderClient.kt44 private const val EXTRA_LOCAL_ONLY = "is_local_only" in <lambda>() constant
286 extras.putBoolean(EXTRA_LOCAL_ONLY, initLocalOnlyMedia) in <lambda>()
306 extras.putBoolean(EXTRA_LOCAL_ONLY, initLocalOnlyMedia) in <lambda>()
/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/util/
DCloudProviderUtils.java24 import static android.provider.MediaStore.EXTRA_LOCAL_ONLY;
213 input.putBoolean(EXTRA_LOCAL_ONLY, initLocalOnlyData); in sendInitPhotoPickerDataNotification()
/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/data/
DPickerSyncRequestExtras.java56 extras.getBoolean(MediaStore.EXTRA_LOCAL_ONLY); in fromBundle()
/packages/providers/MediaProvider/tests/src/com/android/providers/media/photopicker/viewmodel/
DPickerViewModelTest.java720 intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true); in testParseValuesFromPickImagesIntent_localOnlyTrue()
761 intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true); in testParseValuesFromGetContentIntent_localOnlyTrue()
903 intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true); in testShouldShowOnlyLocalFeatures()
908 intent.removeExtra(Intent.EXTRA_LOCAL_ONLY); in testShouldShowOnlyLocalFeatures()
/packages/apps/DocumentsUI/src/com/android/documentsui/files/
DFilesActivity.java268 assert (!intent.hasExtra(Intent.EXTRA_LOCAL_ONLY)); in includeState()
/packages/apps/Gallery2/src/com/android/gallery3d/util/
DGalleryUtils.java370 if (intent.getBooleanExtra(Intent.EXTRA_LOCAL_ONLY, false)) { in determineTypeBits()
/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/viewmodel/
DPickerViewModel.java20 import static android.content.Intent.EXTRA_LOCAL_ONLY;
1112 mIsLocalOnly = intent.getBooleanExtra(EXTRA_LOCAL_ONLY, false); in parseValuesFromIntent()
/packages/apps/DocumentsUI/src/com/android/documentsui/
DBaseActivity.java476 state.localOnly = intent.getBooleanExtra(Intent.EXTRA_LOCAL_ONLY, false); in getState()
/packages/apps/LegacyCamera/src/com/android/camera/
DVideoCamera.java2181 i.putExtra(Intent.EXTRA_LOCAL_ONLY, true); in updateEffectSelection()
/packages/providers/MediaProvider/apex/framework/java/android/provider/
DMediaStore.java299 public static final String EXTRA_LOCAL_ONLY = "is_local_only"; field in MediaStore