Lines Matching refs:phone
17 package com.android.phone;
52 import com.android.phone.settings.VoicemailSettingsActivity;
53 import com.android.phone.vvm.omtp.sync.VoicemailStatusQueryHelper;
54 import com.android.phone.settings.VoicemailNotificationSettingsUtil;
208 Phone phone = PhoneGlobals.getPhone(subId); in updateMwi() local
209 if (visible && phone != null) { in updateMwi()
211 PhoneAccountHandle phoneAccount = PhoneUtils.makePstnPhoneAccountHandle(phone); in updateMwi()
222 if (phone == null) { in updateMwi()
246 String vmNumber = phone.getVoiceMailNumber(); in updateMwi()
255 if ((vmNumber == null) && !phone.getIccRecordsLoaded()) { in updateMwi()
262 if (TelephonyCapabilities.supportsVoiceMessageCount(phone)) { in updateMwi()
263 vmCount = phone.getVoiceMessageCount(); in updateMwi()
269 PhoneAccountHandle phoneAccountHandle = PhoneUtils.makePstnPhoneAccountHandle(phone); in updateMwi()
323 if (VoicemailNotificationSettingsUtil.isVibrationEnabled(phone)) { in updateMwi()
482 Intent intent = new Intent(mContext, com.android.phone.MobileNetworkSettings.class); in showDataDisconnectedRoaming()