Home
last modified time | relevance | path

Searched refs:ONSProfileActivator (Results 1 – 8 of 8) sorted by relevance

/packages/services/AlternativeNetworkAccess/tests/src/com/android/ons/
DONSProfileActivatorTest.java169 ONSProfileActivator onsProfileActivator = new ONSProfileActivator(mMockContext, in testONSAutoProvisioningDisabled()
174 assertEquals(ONSProfileActivator.Result.ERR_AUTO_PROVISIONING_DISABLED, in testONSAutoProvisioningDisabled()
185 ONSProfileActivator onsProfileActivator = new ONSProfileActivator(mMockContext, in testESIMNotSupported()
190 assertEquals(ONSProfileActivator.Result.ERR_ESIM_NOT_SUPPORTED, in testESIMNotSupported()
203 ONSProfileActivator onsProfileActivator = new ONSProfileActivator(mMockContext, in testMultiSIMNotSupported()
208 assertEquals(ONSProfileActivator.Result.ERR_MULTISIM_NOT_SUPPORTED, in testMultiSIMNotSupported()
226 ONSProfileActivator onsProfileActivator = new ONSProfileActivator(mMockContext, in testDeviceSwitchToDualSIMModeFailed()
231 assertEquals(ONSProfileActivator.Result.ERR_CANNOT_SWITCH_TO_DUAL_SIM_MODE, in testDeviceSwitchToDualSIMModeFailed()
250 ONSProfileActivator onsProfileActivator = new ONSProfileActivator(mMockContext, in testDeviceSwitchToDualSIMModeSuccess()
255 assertEquals(ONSProfileActivator.Result.ERR_SWITCHING_TO_DUAL_SIM_MODE, in testDeviceSwitchToDualSIMModeSuccess()
[all …]
DONSStatsInfoTest.java24 import com.android.ons.ONSProfileActivator.Result;
DONSStatsTest.java30 import com.android.ons.ONSProfileActivator.Result;
DOpportunisticNetworkServiceTest.java91 private ONSProfileActivator mONSProfileActivator;
/packages/services/AlternativeNetworkAccess/src/com/android/ons/
DONSProfileActivator.java51 public class ONSProfileActivator implements ONSProfileConfigurator.ONSProfConfigListener, class
54 private static final String TAG = ONSProfileActivator.class.getName();
70 public ONSProfileActivator(Context context, ONSStats onsStats) { in ONSProfileActivator() method in ONSProfileActivator
97 ONSProfileActivator(Context mockContext, SubscriptionManager subscriptionManager, in ONSProfileActivator() method in ONSProfileActivator
DONSStatsInfo.java19 import com.android.ons.ONSProfileActivator.Result;
DONSStats.java24 import com.android.ons.ONSProfileActivator.Result;
DOpportunisticNetworkService.java74 @VisibleForTesting protected ONSProfileActivator mONSProfileActivator;
510 mONSProfileActivator = new ONSProfileActivator(mContext, mONSStats); in initialize()