Home
last modified time | relevance | path

Searched refs:mPhoneId (Results 1 – 12 of 12) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRadioCapability.java112 private int mPhoneId; field in RadioCapability
129 mPhoneId = phoneId; in RadioCapability()
143 return mPhoneId; in getPhoneId()
203 return "{mPhoneId = " + mPhoneId in toString()
DGsmCdmaPhone.java214 logd("GsmCdmaPhone: constructor: sub = " + mPhoneId); in GsmCdmaPhone()
238 mIccCardProxy = mTelephonyComponentFactory.makeIccCardProxy(mContext, mCi, mPhoneId); in initOnce()
301 if (mUiccController.getUiccCardApplication(mPhoneId, UiccController.APP_FAM_3GPP) == in initRatSpecific()
305 tm.setSimOperatorNameForPhone(mPhoneId, operatorAlpha); in initRatSpecific()
311 tm.setSimOperatorNumericForPhone(mPhoneId, operatorNumeric); in initRatSpecific()
336 tm.setSimCountryIsoForPhone(mPhoneId, ""); in setIsoCountryProperty()
349 tm.setSimCountryIsoForPhone(mPhoneId, iso); in setIsoCountryProperty()
682 TelephonyManager.setTelephonyProperty(mPhoneId, property, value); in setSystemProperty()
736 r = mUiccController.getIccRecords(mPhoneId, UiccController.APP_FAM_3GPP); in getIccSerialNumber()
746 r = mUiccController.getIccRecords(mPhoneId, UiccController.APP_FAM_3GPP); in getFullIccSerialNumber()
[all …]
DRIL.java316 final Integer mPhoneId; field in RIL
418 mMetrics.writeOnRilTimeoutResponse(mPhoneId, rr.mSerial, rr.mRequest); in handleMessage()
511 mRadioProxy = IRadio.getService(HIDL_SERVICE_NAME[mPhoneId == null ? 0 : mPhoneId]); in getRadioProxy()
558 HIDL_SERVICE_NAME[mPhoneId == null ? 0 : mPhoneId]); in getOemHookProxy()
606 mPhoneId = instanceId; in RIL()
1218 mMetrics.writeRilSendSms(mPhoneId, rr.mSerial, SmsSession.Event.Tech.SMS_GSM, in sendSMS()
1240 mMetrics.writeRilSendSms(mPhoneId, rr.mSerial, SmsSession.Event.Tech.SMS_GSM, in sendSMSExpectMore()
1353 mMetrics.writeRilSetupDataCall(mPhoneId, rr.mSerial, radioTechnology, dpi.profileId, in setupDataCall()
1615 mMetrics.writeRilAnswer(mPhoneId, rr.mSerial); in acceptCall()
1636 mMetrics.writeRilDeactivateDataCall(mPhoneId, rr.mSerial, in deactivateDataCall()
[all …]
DPhone.java119 ImsManager.updateImsServiceConfig(mContext, mPhoneId, false);
268 protected int mPhoneId; field in Phone
450 mPhoneId = phoneId; in Phone()
564 ImsManager.updateImsServiceConfig(mContext, mPhoneId, false); in startMonitoringImsService()
2937 return mUiccController.getUiccCard(mPhoneId); in getUiccCard()
3017 return SubscriptionController.getInstance().getSubIdUsingPhoneId(mPhoneId); in getSubId()
3024 return mPhoneId; in getPhoneId()
3485 pw.println(" mPhoneId=" + mPhoneId); in dump()
DRadioResponse.java1526 int[] subId = SubscriptionManager.getSubId(mRil.mPhoneId); in responseCellList()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DIccCardProxy.java91 private Integer mPhoneId = null; field in IccCardProxy
120 mPhoneId = phoneId; in IccCardProxy()
242 log("operator=" + operator + " mPhoneId=" + mPhoneId); in handleMessage()
245 mTelephonyManager.setSimOperatorNumericForPhone(mPhoneId, operator); in handleMessage()
248 mTelephonyManager.setSimCountryIsoForPhone(mPhoneId, in handleMessage()
290 mPhoneId, mIccRecords.getServiceProviderName()); in handleMessage()
326 UiccCard newCard = mUiccController.getUiccCard(mPhoneId); in updateIccAvailability()
353 mTelephonyManager.setSimOperatorNumericForPhone(mPhoneId, ""); in resetProperties()
354 mTelephonyManager.setSimCountryIsoForPhone(mPhoneId, ""); in resetProperties()
355 mTelephonyManager.setSimOperatorNameForPhone(mPhoneId, ""); in resetProperties()
[all …]
DUiccCard.java101 private int mPhoneId; field in UiccCard
111 mPhoneId = phoneId; in UiccCard()
200 mCatService = CatService.getInstance(mCi, mContext, this, mPhoneId); in createAndUpdateCatService()
642 return mPhoneId; in getPhoneId()
/frameworks/base/telephony/java/com/android/ims/internal/uce/uceservice/
DImsUceManager.java52 private int mPhoneId; field in ImsUceManager
111 mPhoneId = phoneId; in ImsUceManager()
146 IBinder binder = ServiceManager.checkService(getUceServiceName(mPhoneId)); in createUceService()
153 IBinder b = ServiceManager.getService(getUceServiceName(mPhoneId)); in createUceService()
182 intent.putExtra(EXTRA_PHONE_ID, mPhoneId); in binderDied()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DTelephonyNetworkFactory.java55 private int mPhoneId; field in TelephonyNetworkFactory
81 mPhoneId = phoneId; in TelephonyNetworkFactory()
86 mPhoneSwitcher.registerForActivePhoneSwitch(mPhoneId, mInternalHandler, in TelephonyNetworkFactory()
90 mSubscriptionMonitor.registerForSubscriptionChanged(mPhoneId, mInternalHandler, in TelephonyNetworkFactory()
94 mSubscriptionMonitor.registerForDefaultDataSubscriptionChanged(mPhoneId, mInternalHandler, in TelephonyNetworkFactory()
176 final boolean newIsActive = mPhoneSwitcher.isPhoneActive(mPhoneId); in onActivePhoneSwitch()
191 final int newSubscriptionId = mSubscriptionController.getSubIdUsingPhoneId(mPhoneId); in onSubIdChange()
/frameworks/base/telephony/java/android/telephony/
DRadioAccessFamily.java67 private int mPhoneId; field in RadioAccessFamily
81 mPhoneId = phoneId; in RadioAccessFamily()
91 return mPhoneId; in getPhoneId()
105 String ret = "{ mPhoneId = " + mPhoneId in toString()
129 outParcel.writeInt(mPhoneId); in writeToParcel()
/frameworks/opt/net/ims/src/java/com/android/ims/
DImsManager.java182 private int mPhoneId; field in ImsManager
908 int[] subIds = SubscriptionManager.getSubId(mPhoneId); in setWfcModeForSlot()
1394 mPhoneId = phoneId; in ImsManager()
1881 int[] subIds = SubscriptionManager.getSubId(mPhoneId); in getBooleanCarrierConfigForSlot()
1930 int[] subIds = SubscriptionManager.getSubId(mPhoneId); in getIntCarrierConfigForSlot()
2020 return new ImsServiceProxyCompat(mPhoneId, binder); in getServiceProxyCompat()
2027 ImsServiceProxy serviceProxy = new ImsServiceProxy(mPhoneId, ImsFeature.MMTEL); in getServiceProxy()
2031 IImsServiceController b = tm.getImsServiceControllerAndListen(mPhoneId, in getServiceProxy()
2038 Rlog.w(TAG, "getServiceProxy: b is null! Phone Id: " + mPhoneId); in getServiceProxy()
2507 pw.println(" mPhoneId = " + mPhoneId); in dump()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
DImsPhone.java218 mPhoneId = mDefaultPhone.getPhoneId(); in ImsPhone()