Home
last modified time | relevance | path

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

/packages/modules/OnDevicePersonalization/src/com/android/ondevicepersonalization/services/download/mdd/
DOnDevicePersonalizationLocalFileDownloader.java97 Uri uriToDownload = Uri.parse(urlToDownload); in startDownloadingInternal() local
99 uriToDownload = new Uri.Builder() in startDownloadingInternal()
100 .scheme(uriToDownload.getScheme()) in startDownloadingInternal()
101 .authority(uriToDownload.getAuthority()) in startDownloadingInternal()
102 .path(uriToDownload.getPath()).build(); in startDownloadingInternal()
109 InputStream in = mContext.getContentResolver().openInputStream(uriToDownload); in startDownloadingInternal()
DOnDevicePersonalizationFileDownloader.java146 Uri uriToDownload = Uri.parse(urlToDownload); in startDownloading() local
147 if (uriToDownload == null || fileUri == null) { in startDownloading()
153 if (OnDevicePersonalizationLocalFileDownloader.isLocalOdpUri(uriToDownload)) { in startDownloading()