Lines Matching refs:mPhone
73 private Phone mPhone = null; field in EmergencyCallbackModeExitDialog
80 mPhone = PhoneGlobals.getInstance().getPhoneInEcm(); in onCreate()
82 if (mPhone == null || !mPhone.isInEcm()) { in onCreate()
83 Log.i(TAG, "ECMModeExitDialog launched - isInEcm: false" + " phone:" + mPhone); in onCreate()
87 Log.i(TAG, "ECMModeExitDialog launched - isInEcm: true" + " phone:" + mPhone); in onCreate()
98 mPhone.registerForEcmTimerReset(mTimerResetHandler, ECM_TIMER_RESET, null); in onCreate()
127 if (mPhone != null) { in onDestroy()
128 mPhone.unregisterForEcmTimerReset(mHandler); in onDestroy()
245 mPhone.exitEmergencyCallbackMode(); in onCreateDialog()
306 boolean shouldRestrictData = mPhone.getImsPhone() != null in getDialogText()
307 && mPhone.getImsPhone().isInImsEcm(); in getDialogText()