HomeSort by relevance Sort by last modified time
    Searched defs:mPhone (Results 26 - 50 of 51) sorted by null

12 3

  /packages/apps/Phone/src/com/android/phone/
IccNetworkDepersonalizationPanel.java 55 private Phone mPhone;
151 mPhone = PhoneGlobals.getPhone();
177 mPhone.getIccCard().supplyNetworkDepersonalization(pin,
NetworkQueryService.java 59 private Phone mPhone;
121 mPhone.getAvailableNetworks(
160 mPhone = PhoneFactory.getDefaultPhone();
PhoneInterfaceManager.java 71 Phone mPhone;
114 mPhone.handlePinMmi((String) request.argument));
125 mPhone.getNeighboringCids(onCompleted);
154 int phoneType = mPhone.getPhoneType();
158 hungUp = PhoneUtils.hangupRingingAndActive(mPhone);
235 mPhone = phone;
373 final boolean hasRingingCall = !mPhone.getRingingCall().isIdle();
375 final boolean hasActiveCall = !mPhone.getForegroundCall().isIdle();
376 final boolean hasHoldingCall = !mPhone.getBackgroundCall().isIdle();
439 final UnlockSim checkSimPin = new UnlockSim(mPhone.getIccCard())
    [all...]
ChangeIccPinScreen.java 64 private Phone mPhone;
94 mPhone = PhoneGlobals.getPhone();
177 IccCard iccCardInterface = mPhone.getIccCard();
227 mPhone.getIccCard().supplyPuk2(mPUKCode.getText().toString(),
FdnSetting.java 46 private Phone mPhone;
112 boolean isEnabled = mPhone.getIccCard().getIccFdnEnabled();
116 mPhone.getIccCard().setIccFdnEnabled(!isEnabled, password, onComplete);
186 mPhone.getIccCard().changeIccFdnPassword(
228 mPhone.getIccCard().supplyPuk2(mPuk2, mNewPin, onComplete);
409 if (mPhone.getIccCard().getIccFdnEnabled()) {
426 mPhone = PhoneGlobals.getPhone();
461 mPhone = PhoneGlobals.getPhone();
NetworkSetting.java 72 Phone mPhone;
195 mPhone.selectNetworkManually(mNetworkMap.get(selectedCarrier), msg);
229 mPhone = PhoneGlobals.getPhone();
472 mPhone.setNetworkSelectionModeAutomatic(msg);
CellBroadcastSms.java 170 private Phone mPhone;
184 mPhone.activateCellBroadcastSms(RILConstants.CDMA_CELL_BROADCAST_SMS_ENABLED,
186 android.provider.Settings.Global.putInt(mPhone.getContext().getContentResolver(),
191 mPhone.activateCellBroadcastSms(RILConstants.CDMA_CELL_BROADCAST_SMS_DISABLED,
193 android.provider.Settings.Global.putInt(mPhone.getContext().getContentResolver(),
340 mPhone = PhoneGlobals.getPhone();
426 mPhone.getContext().getContentResolver(),
437 mPhone.getCellBroadcastSmsConfig(Message.obtain(mHandler, MESSAGE_GET_CB_SMS_CONFIG));
446 mPhone.setCellBroadcastSmsConfig(CellBroadcastSmsConfig.getCbSmsAllValues(),
548 mPhone.activateCellBroadcastSms(RILConstants.CDMA_CELL_BROADCAST_SMS_DISABLED
    [all...]
CallFeaturesSetting.java 217 private Phone mPhone;
495 android.provider.Settings.Global.putInt(mPhone.getContext().getContentResolver(),
502 Settings.System.putInt(mPhone.getContext().getContentResolver(),
553 Settings.System.putInt(mPhone.getContext().getContentResolver(),
557 Settings.System.putInt(mPhone.getContext().getContentResolver(),
629 String vmDisplay = mPhone.getVoiceMailNumber();
683 mPhone.setVoiceMailNumber(
684 mPhone.getVoiceMailAlphaTag().toString(),
704 mPhone.setCallForwardingOption(
    [all...]
NotificationMgr.java 98 private Phone mPhone;
144 mPhone = app.phone; // TODO: better style to use mCM.getDefaultPhone() everywhere instead
624 (mPhone.getState() == PhoneConstants.State.OFFHOOK) && audioManager.isSpeakerphoneOn();
    [all...]
  /packages/apps/Settings/src/com/android/settings/
BandMode.java 54 private Phone mPhone = null;
68 mPhone = PhoneFactory.getDefaultPhone();
96 mPhone.setBandMode(mTargetBand.getBand(), msg);
128 mPhone.queryAvailableBandMode(msg);
IccLockSettings.java 86 private Phone mPhone;
182 mPhone = PhoneFactory.getDefaultPhone();
188 mPinToggle.setChecked(mPhone.getIccCard().getIccLockEnabled());
350 mPhone.getIccCard().setIccLockEnabled(mToState, mPin, callback);
382 mPhone.getIccCard().changeIccLockPassword(mOldPin,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 89 GSMPhone mPhone;
197 mPhone = phone;
250 mPhone.getContext().unregisterReceiver(mIntentReceiver);
261 return mPhone;
271 if (!mPhone.mIsTheCurrentActivePhone) {
286 boolean skipRestoringSelection = mPhone.getContext().getResources().getBoolean(
291 mPhone.restoreSavedNetworkSelection(null);
343 mPhone.notifyLocationChanged();
437 GsmCellLocation loc = ((GsmCellLocation)mPhone.getCellLocation());
470 DcTrackerBase dcTracker = mPhone.mDcTracker
    [all...]
GsmConnection.java 369 GSMPhone phone = mOwner.mPhone;
422 mOwner.mPhone.notifyDisconnect(this);
649 postDialHandler = mOwner.mPhone.mPostDialHandler;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaLteServiceStateTracker.java 342 mPhone.setSystemProperty(TelephonyProperties.PROPERTY_DATA_NETWORK_TYPE,
351 if (mPhone.isEriFileLoaded()) {
356 eriText = mPhone.getCdmaEriText();
367 eriText = mPhone.getContext()
390 mPhone.setSystemProperty(TelephonyProperties.PROPERTY_OPERATOR_ALPHA,
396 mPhone.setSystemProperty(TelephonyProperties.PROPERTY_OPERATOR_NUMERIC, operatorNumeric);
400 mPhone.setSystemProperty(TelephonyProperties.PROPERTY_OPERATOR_ISO_COUNTRY, "");
414 mPhone.setSystemProperty(TelephonyProperties.PROPERTY_OPERATOR_ISO_COUNTRY,
418 if (shouldFixTimeZoneNow(mPhone, operatorNumeric, prevOperatorNumeric,
424 mPhone.setSystemProperty(TelephonyProperties.PROPERTY_OPERATOR_ISROAMING
    [all...]
CdmaConnection.java 413 CDMAPhone phone = mOwner.mPhone;
450 mOwner.mPhone.notifyDisconnect(this);
717 postDialHandler = mOwner.mPhone.mPostDialHandler;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccPhoneBookInterfaceManager.java 42 protected PhoneBase mPhone;
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) {
PhoneSubInfo.java 34 private Phone mPhone;
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.getMsisdn()
    [all...]
IccSmsInterfaceManager.java 59 final protected PhoneBase mPhone;
105 mPhone = phone;
116 IccFileHandler fh = mPhone.getIccFileHandler();
184 IccFileHandler fh = mPhone.getIccFileHandler();
257 IccFileHandler fh = mPhone.getIccFileHandler();
306 mPhone.getContext().enforceCallingPermission(
348 mPhone.getContext().enforceCallingPermission(
392 mPhone.getContext().enforceCallingPermission(
SMSDispatcher.java 148 protected final Phone mPhone;
211 mPhone = phone;
463 int ss = mPhone.getServiceState().getState();
    [all...]
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
Status.java 126 private Phone mPhone = null;
225 mPhone = PhoneFactory.getDefaultPhone();
231 if (mPhone == null || Utils.isWifiOnly(getApplicationContext())) {
238 if (mPhone.getPhoneName().equals("CDMA")) {
239 setSummaryText(KEY_MEID_NUMBER, mPhone.getMeid());
240 setSummaryText(KEY_MIN_NUMBER, mPhone.getCdmaMin());
244 setSummaryText(KEY_PRL_VERSION, mPhone.getCdmaPrlVersion());
247 if (mPhone.getLteOnCdmaMode() == PhoneConstants.LTE_ON_CDMA_TRUE) {
249 setSummaryText(KEY_ICC_ID, mPhone.getIccSerialNumber());
250 setSummaryText(KEY_IMEI, mPhone.getImei())
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTracker.java 151 mPhone.getContext().registerReceiver(mIntentReceiver, filter, null, mPhone);
174 mPhone.mCi.unregisterForAvailable(this);
175 mPhone.mCi.unregisterForOffOrNotAvailable(this);
178 mPhone.mCi.unregisterForDataNetworkStateChanged(this);
179 mPhone.getCallTracker().unregisterForVoiceCallEnded(this);
180 mPhone.getCallTracker().unregisterForVoiceCallStarted(this);
181 mPhone.getServiceStateTracker().unregisterForDataConnectionAttached(this);
182 mPhone.getServiceStateTracker().unregisterForDataConnectionDetached(this);
183 mPhone.getServiceStateTracker().unregisterForRoamingOn(this)
    [all...]
DcTrackerBase.java 189 protected PhoneBase mPhone;
365 // already running on mPhone handler thread
366 if (mPhone.getServiceState().getRoaming()) {
499 mPhone = phone;
500 mResolver = mPhone.getContext().getContentResolver();
504 (AlarmManager) mPhone.getContext().getSystemService(Context.ALARM_SERVICE);
505 mCm = (ConnectivityManager) mPhone.getContext().getSystemService(
517 mPhone.getContext().getContentResolver(), Settings.Global.MOBILE_DATA, 1) == 1;
519 mPhone.getContext().registerReceiver(mIntentReceiver, filter, null, mPhone);
    [all...]
DataConnection.java 153 private PhoneBase mPhone;
308 mPhone = phone;
314 mDcRetryAlarmController = new DcRetryAlarmController(mPhone, this);
330 int nt = mPhone.getServiceState().getNetworkType();
397 response.version = mPhone.mCi.getRilVersion();
435 if (mPhone.getServiceState().getRoaming()) {
441 mPhone.mCi.setupDataCall(
467 if (mPhone.mCi.getRadioState().isOn()) {
469 mPhone.mCi.deactivateDataCall(mCid, discReason,
586 rilRadioTechnology = mPhone.getServiceState().getRilDataRadioTechnology() + 2
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NetworkController.java 67 final TelephonyManager mPhone;
210 mPhone = (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);
211 mPhone.listen(mPhoneStateListener,
267 return mPhone.getPhoneType() != TelephonyManager.PHONE_TYPE_NONE;
573 // Though mPhone is a Manager, this call is not an IPC
574 if (mPhone.isNetworkRoaming()) {
719 } else if (mPhone.isNetworkRoaming()) {
    [all...]
  /frameworks/base/location/java/android/location/
Address.java 55 private String mPhone;
369 return mPhone;
376 mPhone = phone;
466 sb.append(mPhone);
518 a.mPhone = in.readString();
565 parcel.writeString(mPhone);

Completed in 1658 milliseconds

12 3