Searched refs:mPhone (Results 1 - 25 of 35) sorted by relevance

12

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DTelephonyTester.java38 private PhoneBase mPhone; field in class:TelephonyTester
47 if (action.equals(mPhone.getActionDetached())) {
49 mPhone.getServiceStateTracker().mDetachedRegistrants.notifyRegistrants();
50 } else if (action.equals(mPhone.getActionAttached())) {
52 mPhone.getServiceStateTracker().mAttachedRegistrants.notifyRegistrants();
60 mPhone = phone;
65 filter.addAction(mPhone.getActionDetached());
66 log("register for intent action=" + mPhone.getActionDetached());
68 filter.addAction(mPhone.getActionAttached());
69 log("register for intent action=" + mPhone
[all...]
H A DPhoneSubInfo.java34 private Phone mPhone; field in class:PhoneSubInfo
45 mPhone = phone;
68 return mPhone.getDeviceId();
78 return mPhone.getDeviceSvn();
87 return mPhone.getSubscriberId();
95 return mPhone.getGroupIdLevel1();
104 return mPhone.getIccSerialNumber();
113 return mPhone.getLine1Number();
122 return mPhone.getLine1AlphaTag();
131 return mPhone
[all...]
H A DIccSmsInterfaceManager.java70 protected PhoneBase mPhone; field in class:IccSmsInterfaceManager
118 mPhone = phone;
134 IccFileHandler fh = mPhone.getIccFileHandler();
162 mPhone = phone;
204 if (PhoneConstants.PHONE_TYPE_GSM == mPhone.getPhoneType()) {
205 mPhone.mCi.deleteSmsOnSim(index, response);
207 mPhone.mCi.deleteSmsOnRuim(index, response);
211 IccFileHandler fh = mPhone.getIccFileHandler();
255 if (PhoneConstants.PHONE_TYPE_GSM == mPhone.getPhoneType()) {
256 mPhone
[all...]
H A DWakeLockStateMachine.java53 protected PhoneBase mPhone; field in class:WakeLockStateMachine
68 mPhone = phone;
116 mPhone = (PhoneBase) msg.obj;
117 log("updatePhoneObject: phone=" + mPhone.getClass().getSimpleName());
H A DIccPhoneBookInterfaceManager.java42 protected PhoneBase mPhone; field in class:IccPhoneBookInterfaceManager
111 this.mPhone = phone;
165 if (mPhone.getContext().checkCallingOrSelfPermission(
218 if (mPhone.getContext().checkCallingOrSelfPermission(
268 if (mPhone.getContext().checkCallingOrSelfPermission(
316 if (mPhone.getCurrentUiccAppType() == AppType.APPTYPE_USIM) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTesterFailBringUpAll.java44 private PhoneBase mPhone; field in class:DcTesterFailBringUpAll
60 } else if (action.equals(mPhone.getActionDetached())) {
66 } else if (action.equals(mPhone.getActionAttached())) {
78 mPhone = phone;
85 filter.addAction(mPhone.getActionDetached());
86 log("register for intent action=" + mPhone.getActionDetached());
88 filter.addAction(mPhone.getActionAttached());
89 log("register for intent action=" + mPhone.getActionAttached());
97 mPhone.getContext().unregisterReceiver(mIntentReceiver);
H A DDcTesterDeactivateAll.java38 private PhoneBase mPhone; field in class:DcTesterDeactivateAll
53 || action.equals(mPhone.getActionDetached())) {
69 mPhone = phone;
78 filter.addAction(mPhone.getActionDetached());
79 log("register for intent action=" + mPhone.getActionDetached());
87 mPhone.getContext().unregisterReceiver(sIntentReceiver);
H A DDcRetryAlarmController.java39 private PhoneBase mPhone; field in class:DcRetryAlarmController
80 mPhone = phone;
82 mAlarmManager = (AlarmManager) mPhone.getContext().getSystemService(Context.ALARM_SERVICE);
89 mPhone.getContext().registerReceiver(mIntentReceiver, filter, null, mDc.getHandler());
97 mPhone.getContext().unregisterReceiver(mIntentReceiver);
98 mPhone = null;
149 PendingIntent retryIntent = PendingIntent.getBroadcast (mPhone.getContext(), 0,
159 sb.append(" mPhone=").append(mPhone);
H A DDcController.java47 private PhoneBase mPhone; field in class:DcController
81 mPhone = phone;
125 mPhone.mCi.registerForRilConnected(getHandler(),
127 mPhone.mCi.registerForDataNetworkStateChanged(getHandler(),
131 new DcTesterDeactivateAll(mPhone, DcController.this, getHandler());
137 if (mPhone != null) {
138 mPhone.mCi.unregisterForRilConnected(getHandler());
139 mPhone.mCi.unregisterForDataNetworkStateChanged(getHandler());
280 mPhone.notifyDataConnection(
301 mPhone
[all...]
H A DDcTracker.java155 mPhone.getContext().registerReceiver(mIntentReceiver, filter, null, mPhone);
178 mPhone.mCi.unregisterForAvailable(this);
179 mPhone.mCi.unregisterForOffOrNotAvailable(this);
182 mPhone.mCi.unregisterForDataNetworkStateChanged(this);
183 mPhone.getCallTracker().unregisterForVoiceCallEnded(this);
184 mPhone.getCallTracker().unregisterForVoiceCallStarted(this);
185 mPhone.getServiceStateTracker().unregisterForDataConnectionAttached(this);
186 mPhone.getServiceStateTracker().unregisterForDataConnectionDetached(this);
187 mPhone
[all...]
H A DDcTrackerBase.java192 protected PhoneBase mPhone; field in class:DcTrackerBase
400 // already running on mPhone handler thread
401 if (mPhone.getServiceState().getRoaming()) {
534 mPhone = phone;
535 mResolver = mPhone.getContext().getContentResolver();
539 (AlarmManager) mPhone.getContext().getSystemService(Context.ALARM_SERVICE);
540 mCm = (ConnectivityManager) mPhone.getContext().getSystemService(
553 mPhone.getContext().getContentResolver(), Settings.Global.MOBILE_DATA, 1) == 1;
555 mPhone.getContext().registerReceiver(mIntentReceiver, filter, null, mPhone);
[all...]
H A DDataConnection.java158 private PhoneBase mPhone; field in class:DataConnection
318 mPhone = phone;
324 mDcRetryAlarmController = new DcRetryAlarmController(mPhone, this);
325 mRilRat = mPhone.getServiceState().getRilDataRadioTechnology();
326 mDataRegState = mPhone.getServiceState().getDataRegState();
342 int nt = mPhone.getServiceState().getNetworkType();
409 response.version = mPhone.mCi.getRilVersion();
447 if (mPhone.getServiceState().getRoaming()) {
453 mPhone.mCi.setupDataCall(
479 if (mPhone
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmInboundSmsHandler.java57 mPhone.mCi.unSetOnNewGsmSms(getHandler());
104 UsimServiceTable ust = mPhone.getUsimServiceTable();
110 mPhone.setVoiceMessageWaiting(1, -1); // line 1: unknown number of msgs waiting
114 mPhone.setVoiceMessageWaiting(1, 0); // line 1: no msgs waiting
140 mPhone.mCi.acknowledgeLastIncomingGsmSms(success, resultToCause(result), response);
144 * Called when the phone changes the default method updates mPhone
H A DGsmMmiCode.java115 GSMPhone mPhone; field in class:GsmMmiCode
411 mPhone = phone;
449 mPhone.mCi.cancelPendingUssd(obtainMessage(EVENT_USSD_CANCEL_COMPLETE, this));
460 mPhone.onMMIDone (this);
649 mPhone.mCi.queryCLIP(
657 mPhone.mCi.setCLIR(CommandsInterface.CLIR_INVOCATION,
660 mPhone.mCi.setCLIR(CommandsInterface.CLIR_SUPPRESSION,
663 mPhone.mCi.getCLIR(
677 mPhone.mCi.queryCallForwardStatus(
716 mPhone
[all...]
H A DGsmServiceStateTracker.java89 GSMPhone mPhone; field in class:GsmServiceStateTracker
171 if (!mPhone.mIsTheCurrentActivePhone) {
203 mPhone = phone;
258 mPhone.getContext().unregisterReceiver(mIntentReceiver);
269 return mPhone;
279 if (!mPhone.mIsTheCurrentActivePhone) {
294 boolean skipRestoringSelection = mPhone.getContext().getResources().getBoolean(
299 mPhone.restoreSavedNetworkSelection(null);
351 mPhone.notifyLocationChanged();
448 GsmCellLocation loc = ((GsmCellLocation)mPhone
[all...]
H A DGsmCallTracker.java84 GSMPhone mPhone; field in class:GsmCallTracker
98 this.mPhone = phone;
219 mPendingMO = new GsmConnection(mPhone.getContext(), checkForTestEmergencyNumber(dialString),
240 mPhone.notifyPreciseCallStateChanged();
316 mPhone.notifyPreciseCallStateChanged();
330 int serviceState = mPhone.getServiceState().getState();
425 mPhone.notifyPhoneStateChanged();
501 mConnections[i] = new GsmConnection(mPhone.getContext(), dc, this, i);
542 mConnections[i] = new GsmConnection (mPhone.getContext(), dc, this, i);
587 mPhone
[all...]
H A DSimPhoneBookInterfaceManager.java67 IccFileHandler fh = mPhone.getIccFileHandler();
H A DGsmCellBroadcastHandler.java52 mPhone.mCi.unSetOnNewGsmBroadcastSms(getHandler());
113 CellLocation cl = mPhone.getCellLocation();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaCallTracker.java80 CDMAPhone mPhone; field in class:CdmaCallTracker
97 mPhone = phone;
196 PhoneNumberUtils.isLocalEmergencyNumber(dialString, mPhone.getContext());
215 mPendingMO = new CdmaConnection(mPhone.getContext(), checkForTestEmergencyNumber(dialString),
238 mPhone.exitEmergencyCallbackMode();
239 mPhone.setOnEcbModeExitResponse(this,EVENT_EXIT_ECM_RESPONSE_CDMA, null);
246 mPhone.notifyPreciseCallStateChanged();
264 mPendingMO = new CdmaConnection(mPhone.getContext(),
339 mPhone.notifyPreciseCallStateChanged();
353 int serviceState = mPhone
[all...]
H A DCdmaServiceStateTracker.java74 CDMAPhone mPhone; field in class:CdmaServiceStateTracker
167 mPhone = phone;
212 mPhone.unregisterForEriFileLoaded(this);
253 Settings.Global.putInt(mPhone.getContext().getContentResolver(),
271 if (!mPhone.mIsTheCurrentActivePhone) {
286 if (mPhone.getLteOnCdmaMode() == PhoneConstants.LTE_ON_CDMA_TRUE) {
294 mPhone.prepareEri();
376 mPhone.notifyLocationChanged();
521 DcTrackerBase dcTracker = mPhone.mDcTracker;
548 mPhone
[all...]
H A DCdmaLteServiceStateTracker.java70 if (!mPhone.mIsTheCurrentActivePhone) {
354 mPhone.setSystemProperty(TelephonyProperties.PROPERTY_DATA_NETWORK_TYPE,
363 if (mPhone.isEriFileLoaded()) {
368 eriText = mPhone.getCdmaEriText();
379 eriText = mPhone.getContext()
402 mPhone.setSystemProperty(TelephonyProperties.PROPERTY_OPERATOR_ALPHA,
408 mPhone.setSystemProperty(TelephonyProperties.PROPERTY_OPERATOR_NUMERIC, operatorNumeric);
412 mPhone.setSystemProperty(TelephonyProperties.PROPERTY_OPERATOR_ISO_COUNTRY, "");
426 mPhone.setSystemProperty(TelephonyProperties.PROPERTY_OPERATOR_ISO_COUNTRY,
430 if (shouldFixTimeZoneNow(mPhone, operatorNumeri
[all...]
H A DCdmaMmiCode.java60 CDMAPhone mPhone; field in class:CdmaMmiCode
146 mPhone = phone;
175 mPhone.onMMIDone (this);
259 mPhone.onMMIDone(this);
269 mPhone.onMMIDone(this);
361 mPhone.onMMIDone(this);
H A DRuimPhoneBookInterfaceManager.java67 IccFileHandler fh = mPhone.getIccFileHandler();
H A DCdmaInboundSmsHandler.java75 mPhone.mCi.unSetOnNewCdmaSms(getHandler());
205 mPhone.mCi.acknowledgeLastIncomingCdmaSms(success, causeCode, response);
214 * Called when the phone changes the default method updates mPhone
260 mPhone.setVoiceMessageWaiting(1, voicemailCount);
/frameworks/base/location/java/android/location/
H A DAddress.java55 private String mPhone; field in class:Address
369 return mPhone;
376 mPhone = phone;
466 sb.append(mPhone);
518 a.mPhone = in.readString();
565 parcel.writeString(mPhone);

Completed in 1264 milliseconds

12