/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | DefaultPhoneNotifierTest.java | 74 mDefaultPhoneNotifierUT.notifyCallForwardingChanged(mPhone); in testNotifyCallForwarding() 77 doReturn(true).when(mPhone).getCallForwardingIndicator(); in testNotifyCallForwarding() 78 doReturn(1).when(mPhone).getSubId(); in testNotifyCallForwarding() 79 mDefaultPhoneNotifierUT.notifyCallForwardingChanged(mPhone); in testNotifyCallForwarding() 86 doReturn(DataActivityState.NONE).when(mPhone).getDataActivityState(); in testNotifyDataActivity() 87 mDefaultPhoneNotifierUT.notifyDataActivity(mPhone); in testNotifyDataActivity() 91 doReturn(1).when(mPhone).getSubId(); in testNotifyDataActivity() 92 doReturn(DataActivityState.DATAIN).when(mPhone).getDataActivityState(); in testNotifyDataActivity() 93 mDefaultPhoneNotifierUT.notifyDataActivity(mPhone); in testNotifyDataActivity() 102 doReturn(mSignalStrength).when(mPhone).getSignalStrength(); in testNotifySignalStrength() [all …]
|
D | CallManagerTest.java | 70 doReturn(mBgCall).when(mPhone).getBackgroundCall(); in setUp() 71 doReturn(mFgCall).when(mPhone).getForegroundCall(); in setUp() 72 doReturn(mRingingCall).when(mPhone).getRingingCall(); in setUp() 73 doReturn(mPhone).when(mBgCall).getPhone(); in setUp() 74 doReturn(mPhone).when(mFgCall).getPhone(); in setUp() 75 doReturn(mPhone).when(mRingingCall).getPhone(); in setUp() 84 CallManager.getInstance().registerPhone(mPhone); in setUp() 90 CallManager.getInstance().unregisterPhone(mPhone); in tearDown() 96 assertEquals(mPhone, CallManager.getInstance().getDefaultPhone()); in testSanity() 101 assertEquals(mPhone, CallManager.getInstance().getRingingPhone()); in testSanity() [all …]
|
D | SmsNumberUtilsTest.java | 140 assertEquals("123", SmsNumberUtils.filterDestAddr(mContext, mPhone.getSubId(), "123")); in testInvalidNumberConversion() 148 assertEquals("18583420022", SmsNumberUtils.filterDestAddr(mContext, mPhone.getSubId(), in testNaPcCountryCodeAreaLocalNumberConversion() 156 assertEquals("01188671234567", SmsNumberUtils.filterDestAddr(mContext, mPhone.getSubId(), in testPcCountryCodeAreaLocalNumberConversion() 165 assertEquals("0119172345678", SmsNumberUtils.filterDestAddr(mContext, mPhone.getSubId(), in testIndiaPcCountryCodeAreaLocalNumberConversion() 173 assertEquals("01188671234567", SmsNumberUtils.filterDestAddr(mContext, mPhone.getSubId(), in testPcHomeIddCountryCodeAreaLocalNumberConversion() 181 assertEquals("01188671234567", SmsNumberUtils.filterDestAddr(mContext, mPhone.getSubId(), in testHomeIddCountryCodeAreaLocalNumberConversion() 190 assertEquals("01118581234567", SmsNumberUtils.filterDestAddr(mContext, mPhone.getSubId(), in testLocalIddCountryCodeAreaLocalNumberConversion() 199 assertEquals("01118581234567", SmsNumberUtils.filterDestAddr(mContext, mPhone.getSubId(), in testIndiaLocalIddCountryCodeAreaLocalNumberConversion() 208 assertEquals("01118581234567", SmsNumberUtils.filterDestAddr(mContext, mPhone.getSubId(), in testJapanLocalIddCountryCodeAreaLocalNumberConversion() 216 assertEquals("011886286281234", SmsNumberUtils.filterDestAddr(mContext, mPhone.getSubId(), in testCountryCodeAreaLocalNumberConversion() [all …]
|
D | GsmCdmaConnectionTest.java | 66 connection = new GsmCdmaConnection(mPhone, String.format( in testFormatDialString() 82 doReturn(PhoneConstants.PHONE_TYPE_CDMA).when(mPhone).getPhoneType(); in testOriginalDialString() 83 connection = new GsmCdmaConnection(mPhone, "+8610000", mCT, null, in testOriginalDialString() 87 doReturn(PhoneConstants.PHONE_TYPE_GSM).when(mPhone).getPhoneType(); in testOriginalDialString() 88 connection = new GsmCdmaConnection(mPhone, "+8610000", mCT, null, in testOriginalDialString() 95 connection = new GsmCdmaConnection(mPhone, String.format( in testSanityGSM() 112 doReturn(PhoneConstants.PHONE_TYPE_CDMA).when(mPhone).getPhoneType(); in testSanityCDMA() 113 connection = new GsmCdmaConnection(mPhone, String.format( in testSanityCDMA() 130 connection = new GsmCdmaConnection(mPhone, String.format( in testConnectionStateUpdate() 149 doReturn(PhoneConstants.PHONE_TYPE_CDMA).when(mPhone).getPhoneType(); in testCDMAPostDialPause() [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/ |
D | DataEnabledOverrideTest.java | 66 doReturn(1).when(mPhone).getSubId(); in testOverrideEnabled() 69 mPhone, ApnSetting.TYPE_MMS)); in testOverrideEnabled() 71 doReturn(PhoneConstants.State.IDLE).when(mPhone).getState(); in testOverrideEnabled() 74 mPhone, ApnSetting.TYPE_DEFAULT)); in testOverrideEnabled() 76 doReturn(PhoneConstants.State.OFFHOOK).when(mPhone).getState(); in testOverrideEnabled() 79 mPhone, ApnSetting.TYPE_DEFAULT)); in testOverrideEnabled() 96 doReturn(1).when(mPhone).getSubId(); in testUpdateRules() 99 mPhone, ApnSetting.TYPE_MMS)); in testUpdateRules() 101 doReturn(PhoneConstants.State.IDLE).when(mPhone).getState(); in testUpdateRules() 104 mPhone, ApnSetting.TYPE_DEFAULT)); in testUpdateRules() [all …]
|
D | ApnSettingTest.java | 331 doReturn(1).when(mPhone).getSubId(); in testIsMetered() 333 assertTrue(ApnSettingUtils.isMetered(createApnSetting(ApnSetting.TYPE_DEFAULT), mPhone)); in testIsMetered() local 336 createApnSetting(ApnSetting.TYPE_DEFAULT | ApnSetting.TYPE_MMS), mPhone)); in testIsMetered() 338 assertTrue(ApnSettingUtils.isMetered(createApnSetting(ApnSetting.TYPE_MMS), mPhone)); in testIsMetered() local 341 createApnSetting(ApnSetting.TYPE_SUPL | ApnSetting.TYPE_MMS), mPhone)); in testIsMetered() 344 createApnSetting(ApnSetting.TYPE_DEFAULT | ApnSetting.TYPE_DUN), mPhone)); in testIsMetered() 346 assertTrue(ApnSettingUtils.isMetered(createApnSetting(ApnSetting.TYPE_ALL), mPhone)); in testIsMetered() local 349 createApnSetting(ApnSetting.TYPE_SUPL | ApnSetting.TYPE_FOTA), mPhone)); in testIsMetered() 352 createApnSetting(ApnSetting.TYPE_IA | ApnSetting.TYPE_CBS), mPhone)); in testIsMetered() 354 assertTrue(ApnSettingUtils.isMeteredApnType(ApnSetting.TYPE_DEFAULT, mPhone)); in testIsMetered() [all …]
|
/frameworks/base/telecomm/java/android/telecom/ |
D | InCallService.java | 236 if (mPhone == null && msg.what != MSG_SET_IN_CALL_ADAPTER) { 243 mPhone = new Phone(new InCallAdapter((IInCallAdapter) msg.obj), callingPackage, 245 mPhone.addListener(mPhoneListener); 246 onPhoneCreated(mPhone); 249 mPhone.internalAddCall((ParcelableCall) msg.obj); 252 mPhone.internalUpdateCall((ParcelableCall) msg.obj); 259 mPhone.internalSetPostDialWait(callId, remaining); 266 mPhone.internalCallAudioStateChanged((CallAudioState) msg.obj); 269 mPhone.internalBringToForeground(msg.arg1 == 1); 272 mPhone.internalSetCanAddCall(msg.arg1 == 1); [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | DataEnabledSettings.java | 113 private final Phone mPhone; field in DataEnabledSettings 139 if (mSubId != mPhone.getSubId()) { 141 + mPhone.getSubId()); 142 mSubId = mPhone.getSubId(); 146 mPhone.notifyUserMobileDataStateChanged(isUserDataEnabled()); 180 mPhone = phone; in DataEnabledSettings() 181 mResolver = mPhone.getContext().getContentResolver(); in DataEnabledSettings() 182 SubscriptionManager subscriptionManager = (SubscriptionManager) mPhone.getContext() in DataEnabledSettings() 185 mTelephonyManager = (TelephonyManager) mPhone.getContext() in DataEnabledSettings() 193 .getDataEnabledOverrideRules(mPhone.getSubId())); in getDataEnabledOverride() [all …]
|
D | DcTesterFailBringUpAll.java | 45 private Phone mPhone; field in DcTesterFailBringUpAll 61 } else if (action.equals(mPhone.getActionDetached())) { 67 } else if (action.equals(mPhone.getActionAttached())) { 79 mPhone = phone; in DcTesterFailBringUpAll() 86 filter.addAction(mPhone.getActionDetached()); in DcTesterFailBringUpAll() 87 log("register for intent action=" + mPhone.getActionDetached()); in DcTesterFailBringUpAll() 89 filter.addAction(mPhone.getActionAttached()); in DcTesterFailBringUpAll() 90 log("register for intent action=" + mPhone.getActionAttached()); in DcTesterFailBringUpAll() 98 mPhone.getContext().unregisterReceiver(mIntentReceiver); in dispose()
|
D | DcTracker.java | 360 if (mPhone.getPhoneId() == intent.getIntExtra(SubscriptionManager.EXTRA_SLOT_INDEX, 367 if (mPhone.getPhoneId() == intent.getIntExtra(CarrierConfigManager.EXTRA_SLOT_INDEX, 412 if (mPhone == null || mPhone.getSubId() != subId) return; 421 if (mPhone == null || mPhone.getSubId() != subId) return; 434 simSuffix = Integer.toString(mPhone.getSubId()); in registerSettingsObserver() 489 int phoneSubId = mPhone.getSubId(); in onDataReconnect() 530 if (!SubscriptionManager.isValidSubscriptionId(subId) || (subId != mPhone.getSubId())) { in onActionIntentDataStallAlarm() 548 protected final Phone mPhone; field in DcTracker 670 mPhone = phone; in DcTracker() 677 ? "C" : "I") + "-" + mPhone.getPhoneId(); in DcTracker() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | GsmCdmaCallTracker.java | 96 private GsmCdmaPhone mPhone; field in GsmCdmaCallTracker 155 this.mPhone = phone; in GsmCdmaCallTracker() 164 mPhone.getContext().registerReceiver(mEcmExitReceiver, filter); in GsmCdmaCallTracker() 178 if (mPhone.isPhoneTypeGsm()) { in updatePhoneType() 184 mPhone.getDataEnabledSettings().setInternalDataEnabled(true); in updatePhoneType() 191 mPhone.setEcmCanceledForEmergency(false /*isCanceled*/); in updatePhoneType() 284 boolean isEmergencyCall = PhoneNumberUtils.isLocalEmergencyNumber(mPhone.getContext(), in dialGsm() 289 dialString = convertNumberIfNecessary(mPhone, dialString); in dialGsm() 322 mPendingMO = new GsmCdmaConnection(mPhone, dialString, this, mForegroundCall, in dialGsm() 331 mMetrics.writeRilDial(mPhone.getPhoneId(), mPendingMO, clirMode, uusInfo); in dialGsm() [all …]
|
D | DeviceStateMonitor.java | 93 private final Phone mPhone; field in DeviceStateMonitor 274 mPhone = phone; in DeviceStateMonitor() 304 mPhone.getContext().registerReceiver(mBroadcastReceiver, filter, null, mPhone); in DeviceStateMonitor() 306 mPhone.mCi.registerForRilConnected(this, EVENT_RIL_CONNECTED, null); in DeviceStateMonitor() 307 mPhone.mCi.registerForAvailable(this, EVENT_RADIO_AVAILABLE, null); in DeviceStateMonitor() 416 int trackingMode = Settings.Global.getInt(mPhone.getContext().getContentResolver(), in shouldEnableNrTrackingIndications() 422 if (mPhone.getServiceState().getNrState() in shouldEnableNrTrackingIndications() 568 mPhone.mCi.getBarringInfo(null); in onUpdateDeviceState() 613 mPhone.mCi.sendDeviceState(type, state, null); in sendDeviceState() 625 mPhone.mCi.setUnsolResponseFilter(newFilter, null); in setUnsolResponseFilter() [all …]
|
D | CarrierActionAgent.java | 70 private final Phone mPhone; field in CarrierActionAgent 103 mPhone = phone; in CarrierActionAgent() 104 mPhone.getContext().registerReceiver(mReceiver, in CarrierActionAgent() 106 mSettingsObserver = new SettingsObserver(mPhone.getContext(), this); in CarrierActionAgent() 122 ? mPhone.getServiceStateTracker().getOtasp() in handleMessage() 124 mPhone.notifyOtaspChanged(otaspState); in handleMessage() 150 if ((Settings.Global.getInt(mPhone.getContext().getContentResolver(), in handleMessage() 157 if (!mPhone.isUserDataEnabled()) carrierActionReset(); in handleMessage() 171 mobileData = mobileData + mPhone.getSubId(); in handleMessage() 180 if (mPhone.getServiceStateTracker() != null) { in handleMessage() [all …]
|
D | TelephonyTester.java | 155 private Phone mPhone; field in TelephonyTester 165 if (action.equals(mPhone.getActionDetached())) { 167 mPhone.getServiceStateTracker().mDetachedRegistrants.get( 169 } else if (action.equals(mPhone.getActionAttached())) { 171 mPhone.getServiceStateTracker().mAttachedRegistrants.get( 195 mPhone.getServiceStateTracker().sendEmptyMessage( 213 mPhone = phone; in TelephonyTester() 218 filter.addAction(mPhone.getActionDetached()); in TelephonyTester() 219 log("register for intent action=" + mPhone.getActionDetached()); in TelephonyTester() 221 filter.addAction(mPhone.getActionAttached()); in TelephonyTester() [all …]
|
D | NetworkTypeController.java | 116 private final Phone mPhone; field in NetworkTypeController 123 SubscriptionManager.INVALID_PHONE_INDEX) == mPhone.getPhoneId() 151 mPhone = phone; in NetworkTypeController() 174 mPhone.registerForRadioOffOrNotAvailable(getHandler(), in registerForAllEvents() 176 mPhone.registerForPreferredNetworkTypeChanged(getHandler(), in registerForAllEvents() 178 mPhone.getServiceStateTracker().registerForDataRegStateOrRatChanged( in registerForAllEvents() 181 mPhone.getDcTracker(AccessNetworkConstants.TRANSPORT_TYPE_WWAN) in registerForAllEvents() 184 mPhone.getServiceStateTracker().registerForNrStateChanged(getHandler(), in registerForAllEvents() 186 mPhone.getServiceStateTracker().registerForNrFrequencyChanged(getHandler(), in registerForAllEvents() 188 mPhone.getDeviceStateMonitor().registerForPhysicalChannelConfigNotifChanged(getHandler(), in registerForAllEvents() [all …]
|
D | CarrierServiceStateTracker.java | 59 private Phone mPhone; field in CarrierServiceStateTracker 73 this.mPhone = phone; in CarrierServiceStateTracker() 78 SubscriptionManager.from(mPhone.getContext()).addOnSubscriptionsChangedListener( in CarrierServiceStateTracker() 82 int subId = mPhone.getSubId(); in CarrierServiceStateTracker() 110 int subId = mPhone.getSubId(); in registerPrefNetworkModeObserver() 113 mPhone.getContext().getContentResolver().registerContentObserver( in registerPrefNetworkModeObserver() 121 mPhone.getContext().getContentResolver().unregisterContentObserver( in unregisterPrefNetworkModeObserver() 172 Rlog.d(LOG_TAG, "isPhoneRegisteredForWifiCalling: " + mPhone.isWifiCallingEnabled()); in isPhoneRegisteredForWifiCalling() 173 return mPhone.isWifiCallingEnabled(); in isPhoneRegisteredForWifiCalling() 181 Context context = mPhone.getContext(); in isRadioOffOrAirplaneMode() [all …]
|
D | ServiceStateTracker.java | 380 final int curSubId = mPhone.getSubId(); in onSubscriptionsChanged() 395 mPhone.updateVoiceMail(); in onSubscriptionsChanged() 401 Context context = mPhone.getContext(); in onSubscriptionsChanged() 403 mPhone.notifyPhoneStateChanged(); in onSubscriptionsChanged() 404 mPhone.notifyCallForwardingIndicator(); in onSubscriptionsChanged() 410 mPhone.notifyServiceStateChanged(mSS); in onSubscriptionsChanged() 415 mPhone.sendSubscriptionSettings(restoreSelection); in onSubscriptionsChanged() 420 mSubscriptionController.setPlmnSpn(mPhone.getPhoneId(), mCurShowPlmn, in onSubscriptionsChanged() 461 protected final GsmCdmaPhone mPhone; field in ServiceStateTracker 549 if (phoneId == mPhone.getPhoneId()) { [all …]
|
D | NetworkRegistrationManager.java | 60 private final Phone mPhone; field in NetworkRegistrationManager 80 && mPhone.getPhoneId() == intent.getIntExtra( 93 mPhone = phone; in NetworkRegistrationManager() 96 ? "C" : "I") + "-" + mPhone.getPhoneId(); in NetworkRegistrationManager() 165 mINetworkService.requestNetworkRegistrationInfo(mPhone.getPhoneId(), domain, callback); in requestNetworkRegistrationInfo() 200 mINetworkService.createNetworkServiceProvider(mPhone.getPhoneId()); in onServiceConnected() 201 mINetworkService.registerForNetworkRegistrationInfoChanged(mPhone.getPhoneId(), in onServiceConnected() 248 mINetworkService.removeNetworkServiceProvider(mPhone.getPhoneId()); in unbindService() 255 mPhone.getContext().unbindService(mServiceConnection); in unbindService() 263 if (mPhone == null || !SubscriptionManager.isValidPhoneId(mPhone.getPhoneId())) { in bindService() [all …]
|
D | CarrierSignalAgent.java | 73 private final Phone mPhone; field in CarrierSignalAgent 124 mPhone = phone; in CarrierSignalAgent() 127 mPhone.getContext().registerReceiver(mReceiver, in CarrierSignalAgent() 129 mPhone.getCarrierActionAgent().registerForCarrierAction( in CarrierSignalAgent() 143 final ConnectivityManager connectivityMgr = mPhone.getContext() in handleMessage() 171 connectivityMgr.registerDefaultNetworkCallback(mNetworkCallback, mPhone); in handleMessage() 190 CarrierConfigManager configManager = (CarrierConfigManager) mPhone.getContext() in loadCarrierConfig() 210 mPhone.getCarrierActionAgent().sendEmptyMessage( in loadCarrierConfig() 224 mPhone.getCarrierActionAgent().sendEmptyMessage( in loadCarrierConfig() 301 final PackageManager packageManager = mPhone.getContext().getPackageManager(); in broadcast() [all …]
|
D | SimActivationTracker.java | 47 private Phone mPhone; field in SimActivationTracker 72 mPhone = phone; in SimActivationTracker() 93 mPhone.getContext().registerReceiver(mReceiver, intentFilter); in SimActivationTracker() 103 mPhone.notifyVoiceActivationStateChanged(state); in setVoiceActivationState() 113 mPhone.notifyDataActivationStateChanged(state); in setDataActivationState() 155 Rlog.d(LOG_TAG, "[" + mPhone.getPhoneId() + "]" + s); in log() 159 Rlog.e(LOG_TAG, "[" + mPhone.getPhoneId() + "]" + s); in loge() 176 mPhone.getContext().unregisterReceiver(mReceiver); in dispose()
|
D | ImsSmsDispatcher.java | 124 mMetrics.writeOnImsServiceSmsSolicitedResponse(mPhone.getPhoneId(), status, reason); 138 mPhone.notifySmsSent(tracker.mDestAddress); 223 mImsManagerConnector = new FeatureConnector<>(mContext, mPhone.getPhoneId(), in ImsSmsDispatcher() 258 return ((mPhone.getServiceState().getRilDataRadioTechnology() == in isLteService() 259 ServiceState.RIL_RADIO_TECHNOLOGY_LTE) && (mPhone.getServiceState(). in isLteService() 264 return ((mPhone.getServiceState().getRilVoiceRadioTechnology() == in isLimitedLteService() 265 ServiceState.RIL_RADIO_TECHNOLOGY_LTE) && mPhone.getServiceState().isEmergencyOnly()); in isLimitedLteService() 275 if (!PhoneNumberUtils.isLocalEmergencyNumber(mContext, mPhone.getSubId(), destAddr)) { in isEmergencySmsSupport() 282 CarrierConfigManager configManager = (CarrierConfigManager) mPhone.getContext() in isEmergencySmsSupport() 357 + " SS=" + mPhone.getServiceState().getState()); in sendSms() [all …]
|
D | DisplayInfoController.java | 37 private final Phone mPhone; field in DisplayInfoController 43 mPhone = phone; in DisplayInfoController() 61 mPhone.getServiceState().getDataNetworkType(), in updateTelephonyDisplayInfo() 64 Rlog.d(TAG, "TelephonyDisplayInfo[" + mPhone.getPhoneId() + "] changed from " in updateTelephonyDisplayInfo() 68 mPhone.notifyDisplayInfoChanged(mTelephonyDisplayInfo); in updateTelephonyDisplayInfo() 96 pw.println(" mPhone=" + mPhone.getPhoneName()); in dump()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/metrics/ |
D | TelephonyMetricsTest.java | 155 mMetrics.writeDataStallEvent(mPhone.getPhoneId(), i); in testEventDropped() 169 mMetrics.writeDataStallEvent(mPhone.getPhoneId(), 3); in testWriteDataStallEvent() 175 assertEquals(mPhone.getPhoneId(), log.events[0].phoneId); in testWriteDataStallEvent() 183 mMetrics.writeModemRestartEvent(mPhone.getPhoneId(), "Test"); in testModemRestartEvent() 190 assertEquals(mPhone.getPhoneId(), log.events[0].phoneId); in testModemRestartEvent() 210 mMetrics.writeCarrierIdMatchingEvent(mPhone.getPhoneId(), 1, in testWriteCarrierIdMatchingEventWithInvalidMatchingScore() 221 assertEquals(mPhone.getPhoneId(), log.events[0].phoneId); in testWriteCarrierIdMatchingEventWithInvalidMatchingScore() 251 mMetrics.writeCarrierIdMatchingEvent(mPhone.getPhoneId(), 1, 1, in testWriteCarrierIdMatchingEvent() 259 assertEquals(mPhone.getPhoneId(), log.events[0].phoneId); in testWriteCarrierIdMatchingEvent() 287 mMetrics.writeEmergencyNumberUpdateEvent(mPhone.getPhoneId(), number, in testWriteEmergencyNumberUpdateEvent() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/vendor/dataconnection/ |
D | VendorDcTracker.java | 71 String iccId = mPhone.getIccSerialNumber(); in allowInitialAttachForOperator() 104 if (!mPhone.getServiceStateTracker().isConcurrentVoiceAndDataAllowed()) { in onVoiceCallEnded() 107 mPhone.notifyAllActiveDataConnections(); in onVoiceCallEnded() 114 if (mPhone.getSubId() == SubscriptionManager.getDefaultDataSubscriptionId()) { in onVoiceCallEnded() 124 if (mPhone.getContext().getResources().getBoolean( in setupDataOnConnectableApn() 136 boolean isPdpRejectConfigEnabled = mPhone.getContext().getResources().getBoolean( in onDataSetupComplete() 153 if (mPhone.getContext().getResources().getBoolean( in onDataSetupCompleteError() 160 mPhone, mResetEventListener); in onDataSetupCompleteError() 173 delay = mPhone.getContext().getResources().getInteger( in onDataSetupCompleteError() 196 mPhone.notifyDataConnection(apnContext.getApnType()); in onDataSetupCompleteError() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneCallTracker.java | 206 ImsPhoneConnection conn = new ImsPhoneConnection(mPhone, imsCall, in onIncomingCall() 228 TelephonyMetrics.getInstance().writeOnImsCallReceive(mPhone.getPhoneId(), in onIncomingCall() 230 mPhone.getVoiceCallSessionStats().onImsCallReceived(conn); in onIncomingCall() 233 mPhone.notifyUnknownConnection(conn); in onIncomingCall() 240 mPhone.notifyNewRingingConnection(conn); in onIncomingCall() 241 mPhone.notifyIncomingRing(); in onIncomingCall() 245 mPhone.notifyPreciseCallStateChanged(); in onIncomingCall() 254 if (mPhone != null && mPhone.mDefaultPhone != null) { in onVoiceMessageCountUpdate() 256 mPhone.mDefaultPhone.setVoiceMessageCount(count); in onVoiceMessageCountUpdate() 311 if (subId == mPhone.getSubId()) { [all …]
|