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.java407 final Intent downloadIntent = DownloadService.makeDownloadIntent(getApplicationContext(), in onActivityResult()
863 final Intent createFileIntent = DownloadService.makeCreateFileIntent( in onDownloadStart()
/packages/modules/CaptivePortalLogin/tests/src/com/android/captiveportallogin/
DCaptivePortalLoginActivityTest.java474 final ComponentName downloadComponent = new ComponentName(ctx, DownloadService.class); in testDownload()
498 assertEquals(mNetwork, dlIntent.getParcelableExtra(DownloadService.ARG_NETWORK)); in testDownload()
499 assertEquals(TEST_USERAGENT, dlIntent.getStringExtra(DownloadService.ARG_USERAGENT)); in testDownload()
501 assertEquals(expectedUrl, dlIntent.getStringExtra(DownloadService.ARG_URL)); in testDownload()
502 assertEquals(filename, dlIntent.getStringExtra(DownloadService.ARG_DISPLAY_NAME)); in testDownload()
503 assertEquals(mockFile, dlIntent.getParcelableExtra(DownloadService.ARG_OUTFILE)); in testDownload()
DDownloadServiceTest.kt198 private fun makeDownloadIntent(testFile: File) = DownloadService.makeDownloadIntent( in makeDownloadIntent()