Home
last modified time | relevance | path

Searched refs:ONSProfileDownloader (Results 1 – 9 of 9) sorted by relevance

/packages/services/AlternativeNetworkAccess/tests/src/com/android/ons/
DONSProfileDownloaderTest.java40 import com.android.ons.ONSProfileDownloader.DownloadProfileResult;
69 ONSProfileDownloader.IONSProfileDownloaderListener mMockDownloadListener;
109 ONSProfileDownloader onsProfileDownloader = new ONSProfileDownloader(mMockContext, in testNullSMDPAddress()
122 final ONSProfileDownloader.IONSProfileDownloaderListener mListener = in testDownloadSuccessCallback()
123 new ONSProfileDownloader.IONSProfileDownloaderListener() { in testDownloadSuccessCallback()
135 ONSProfileDownloader.DownloadRetryResultCode operationCode, in testDownloadSuccessCallback()
147 ONSProfileDownloader onsProfileDownloader = new ONSProfileDownloader(mMockContext, in testDownloadSuccessCallback()
152 intent.setAction(ONSProfileDownloader.ACTION_ONS_ESIM_DOWNLOAD); in testDownloadSuccessCallback()
153 intent.putExtra(Intent.EXTRA_COMPONENT_NAME, ONSProfileDownloader.class.getName()); in testDownloadSuccessCallback()
154 intent.putExtra(ONSProfileDownloader.PARAM_PRIMARY_SUBID, TEST_SUB_ID); in testDownloadSuccessCallback()
[all …]
DONSProfileActivatorTest.java71 ONSProfileDownloader mMockONSProfileDownloader;
463 doReturn(ONSProfileDownloader.DownloadProfileResult.SUCCESS).when(mMockONSProfileDownloader) in testCBRSpSIMAndNotGrouped()
653 doReturn(ONSProfileDownloader.DownloadProfileResult.SUCCESS).when(mMockONSProfileDownloader) in testESIMDownloadFailureAndRetry()
712 ONSProfileDownloader.DownloadRetryResultCode.ERR_RETRY_DOWNLOAD, 0); in testESIMDownloadFailureAndRetry()
DONSStatsInfoTest.java25 import com.android.ons.ONSProfileDownloader.DownloadRetryResultCode;
DONSStatsTest.java31 import com.android.ons.ONSProfileDownloader.DownloadRetryResultCode;
/packages/services/AlternativeNetworkAccess/src/com/android/ons/
DONSProfileActivator.java40 import com.android.ons.ONSProfileDownloader.DownloadRetryResultCode;
52 ONSProfileDownloader.IONSProfileDownloaderListener {
61 private final ONSProfileDownloader mONSProfileDownloader;
82 mONSProfileDownloader = new ONSProfileDownloader(mContext, mCarrierConfigMgr, in ONSProfileActivator()
101 ONSProfileDownloader onsProfileDownloader, ONSStats onsStats) { in ONSProfileActivator()
117 ONSProfileDownloader getONSProfileDownloader() { in getONSProfileDownloader()
291 ONSProfileDownloader.DownloadProfileResult res = mONSProfileDownloader.downloadProfile( in downloadAndActivateOpportunisticSubscription()
DONSProfileDownloader.java38 public class ONSProfileDownloader { class
45 private static final String TAG = ONSProfileDownloader.class.getName();
72 public ONSProfileDownloader(Context context, CarrierConfigManager carrierConfigManager, in ONSProfileDownloader() method in ONSProfileDownloader
DONSStatsInfo.java20 import com.android.ons.ONSProfileDownloader.DownloadRetryResultCode;
DONSStats.java25 import com.android.ons.ONSProfileDownloader.DownloadRetryResultCode;
DOpportunisticNetworkService.java452 case ONSProfileDownloader.ACTION_ONS_ESIM_DOWNLOAD: { in onStartCommand()