Home
last modified time | relevance | path

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

/packages/modules/CaptivePortalLogin/src/com/android/captiveportallogin/
DDownloadService.java60 public class DownloadService extends Service { class
61 private static final String TAG = DownloadService.class.getSimpleName();
120 final Intent cancelIntent = new Intent(context, DownloadService.class) in DownloadTask()
154 final Intent intent = new Intent(packageContext, DownloadService.class); in makeDownloadIntent()
321 Log.e(DownloadService.class.getSimpleName(), "Download error", e); in processDownload()
DCaptivePortalLoginActivity.java424 final Intent downloadIntent = DownloadService.makeDownloadIntent(getApplicationContext(), in onActivityResult()
882 final Intent createFileIntent = DownloadService.makeCreateFileIntent( in onDownloadStart()
/packages/modules/CaptivePortalLogin/tests/src/com/android/captiveportallogin/
DCaptivePortalLoginActivityTest.java583 assertEquals(DownloadService.class.getName(), dlIntent.getComponent().getClassName()); in testDownload()
584 assertEquals(mNetwork, dlIntent.getParcelableExtra(DownloadService.ARG_NETWORK)); in testDownload()
585 assertEquals(TEST_USERAGENT, dlIntent.getStringExtra(DownloadService.ARG_USERAGENT)); in testDownload()
587 assertEquals(expectedUrl, dlIntent.getStringExtra(DownloadService.ARG_URL)); in testDownload()
588 assertEquals(filename, dlIntent.getStringExtra(DownloadService.ARG_DISPLAY_NAME)); in testDownload()
589 assertEquals(mockFile, dlIntent.getParcelableExtra(DownloadService.ARG_OUTFILE)); in testDownload()
DDownloadServiceTest.kt247 private fun makeDownloadIntent(testFile: File) = DownloadService.makeDownloadIntent( in makeDownloadIntent()