Home | History | Annotate | Download | only in contacts

Lines Matching refs:telephonyManager

37 import android.telephony.TelephonyManager;
153 TelephonyManager telephonyManager =
154 (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
155 if (telephonyManager == null
156 || !TelephonyCapabilities.supportsAdn(telephonyManager.getCurrentPhoneType())) {
238 TelephonyManager telephonyManager =
239 (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
240 if (telephonyManager != null && input.equals(MMI_IMEI_DISPLAY)) {
241 int phoneType = telephonyManager.getCurrentPhoneType();
242 if (phoneType == TelephonyManager.PHONE_TYPE_GSM) {
243 showIMEIPanel(context, useSystemWindow, telephonyManager);
245 } else if (phoneType == TelephonyManager.PHONE_TYPE_CDMA) {
246 showMEIDPanel(context, useSystemWindow, telephonyManager);
261 TelephonyManager telephonyManager) {
262 String imeiStr = telephonyManager.getDeviceId();
273 TelephonyManager telephonyManager) {
274 String meidStr = telephonyManager.getDeviceId();