Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
DDataConnectionStateTracker.java66 int newSubId = mPhone.getSubId();
67 if (mSubId == newSubId
68 || newSubId == SubscriptionManager.INVALID_SUBSCRIPTION_ID) {
73 mSubId = newSubId;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
DImsServiceController.java511 int newSubId = slotIdToSubIdMap.get(slotID); in changeImsServiceFeatures() local
512 if (oldSubId != newSubId) { in changeImsServiceFeatures()
513 changedSubIds.put(slotID, newSubId); in changeImsServiceFeatures()
515 + newSubId); in changeImsServiceFeatures()
517 + newSubId); in changeImsServiceFeatures()
518 if (newSubId == SubscriptionManager.INVALID_SUBSCRIPTION_ID) { in changeImsServiceFeatures()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DMultiSimSettingController.java879 int newSubId = mPrimarySubList.get(0); in setDefaultForPsimConversionChanged() local
886 log("set preferred call, subId:" + newSubId); in setDefaultForPsimConversionChanged()
887 mSubscriptionManagerService.setDefaultVoiceSubId(newSubId); in setDefaultForPsimConversionChanged()
893 log("set preferred sms, subId:" + newSubId); in setDefaultForPsimConversionChanged()
894 mSubscriptionManagerService.setDefaultSmsSubId(newSubId); in setDefaultForPsimConversionChanged()
900 log("set preferred data, subId:" + newSubId); in setDefaultForPsimConversionChanged()
901 mSubscriptionManagerService.setDefaultDataSubId(newSubId); in setDefaultForPsimConversionChanged()
/frameworks/opt/net/ims/src/java/com/android/ims/
DRcsFeatureManager.java226 public void updateCapabilities(int newSubId) throws android.telephony.ims.ImsException { in updateCapabilities() argument
227 boolean optionsSupport = isOptionsSupported(newSubId); in updateCapabilities()
228 boolean presenceSupported = isPresenceSupported(newSubId); in updateCapabilities()
230 logi("Update capabilities for slot " + mSlotId + " and sub " + newSubId + ": options=" in updateCapabilities()
DImsFeatureBinderRepository.java240 public void updateSubId(int newSubId) { in updateSubId() argument
241 subId = newSubId; in updateSubId()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/analytics/
DTelephonyAnalytics.java90 int newSubId = getSubId();
91 if ((mSubId != newSubId)
92 && (newSubId != SubscriptionManager.INVALID_SUBSCRIPTION_ID)) {
94 mSubId = newSubId;
95 startAnalytics(newSubId);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DSimultaneousCallingTrackerTest.java202 private void updateSubId(Phone phone, int newSubId) { in updateSubId() argument
209 doReturn(newSubId).when(phone).getSubId(); in updateSubId()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/subscription/
DSubscriptionManagerService.java3292 private void broadcastSubId(@NonNull String action, int newSubId) { in broadcastSubId() argument
3295 SubscriptionManager.putSubscriptionIdExtra(intent, newSubId); in broadcastSubId()
3297 log("broadcastSubId action: " + action + " subId= " + newSubId); in broadcastSubId()