Home
last modified time | relevance | path

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

/packages/apps/TvSettings/Settings/tests/robotests/src/com/android/tv/settings/device/storage/
DSettingsStorageServiceTest.java79 final Intent formatIntent = new Intent(SettingsStorageService.ACTION_FORMAT_AS_PUBLIC); in testFormatAsPublic_success_fromPrivate() local
80 formatIntent.putExtra(DiskInfo.EXTRA_DISK_ID, "asdf"); in testFormatAsPublic_success_fromPrivate()
82 mSettingsStorageServiceImplSpy.onHandleIntent(formatIntent); in testFormatAsPublic_success_fromPrivate()
109 final Intent formatIntent = new Intent(SettingsStorageService.ACTION_FORMAT_AS_PUBLIC); in testFormatAsPublic_success_fromNonPrivate() local
110 formatIntent.putExtra(DiskInfo.EXTRA_DISK_ID, "asdf"); in testFormatAsPublic_success_fromNonPrivate()
112 mSettingsStorageServiceImplSpy.onHandleIntent(formatIntent); in testFormatAsPublic_success_fromNonPrivate()
133 final Intent formatIntent = new Intent(SettingsStorageService.ACTION_FORMAT_AS_PUBLIC); in testFormatAsPublic_failure() local
134 formatIntent.putExtra(DiskInfo.EXTRA_DISK_ID, "asdf"); in testFormatAsPublic_failure()
139 mSettingsStorageServiceImplSpy.onHandleIntent(formatIntent); in testFormatAsPublic_failure()
168 final Intent formatIntent = new Intent(SettingsStorageService.ACTION_FORMAT_AS_PRIVATE); in testFormatAsPrivate_success() local
[all …]
/packages/apps/Gallery/src/com/android/camera/
DWallpaper.java42 formatIntent(intent); in onCreate()
48 formatIntent(intent); in onCreate()
53 protected void formatIntent(Intent intent) { in formatIntent() method in Wallpaper