Home
last modified time | relevance | path

Searched refs:specifiedTm (Results 1 – 3 of 3) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiCarrierInfoManager.java504 TelephonyManager specifiedTm = mTelephonyManager.createForSubscriptionId(subId); in getSimIdentity() local
505 String imsi = specifiedTm.getSubscriberId(); in getSimIdentity()
508 if (specifiedTm.getSimState() == TelephonyManager.SIM_STATE_READY) { in getSimIdentity()
509 mccMnc = specifiedTm.getSimOperator(); in getSimIdentity()
520 imsiEncryptionInfo = specifiedTm.getCarrierInfoForImsiEncryption( in getSimIdentity()
551 TelephonyManager specifiedTm = mTelephonyManager.createForSubscriptionId(subId); in getAnonymousIdentityWith3GppRealm() local
552 if (specifiedTm.getSimState() != TelephonyManager.SIM_STATE_READY) { in getAnonymousIdentityWith3GppRealm()
555 String mccMnc = specifiedTm.getSimOperator(); in getAnonymousIdentityWith3GppRealm()
887 TelephonyManager specifiedTm = mTelephonyManager.createForSubscriptionId(subId); in getGsmAuthResponseWithLength() local
888 String tmResponse = specifiedTm.getIccAuthentication( in getGsmAuthResponseWithLength()
[all …]
/frameworks/opt/net/wifi/libs/WifiTrackerLib/src/com/android/wifitrackerlib/
DUtils.java609 TelephonyManager specifiedTm = telephonyManager.createForSubscriptionId(subId); in getCarrierNameForSubId()
610 if (specifiedTm == null) { in getCarrierNameForSubId()
613 CharSequence name = specifiedTm.getSimCarrierIdName(); in getCarrierNameForSubId()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
DPasspointManagerTest.java738 TelephonyManager specifiedTm = mock(TelephonyManager.class); in addProviderWithValidFullImsiOfSimCredential() local
739 when(mTelephonyManager.createForSubscriptionId(eq(TEST_SUBID))).thenReturn(specifiedTm); in addProviderWithValidFullImsiOfSimCredential()
740 when(specifiedTm.getSubscriberId()).thenReturn(FULL_IMSI); in addProviderWithValidFullImsiOfSimCredential()