Lines Matching defs:telephonyManager
36 import android.telephony.TelephonyManager;
198 TelephonyManager telephonyManager =
199 (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
200 if (telephonyManager == null
201 || telephonyManager.getPhoneType() != TelephonyManager.PHONE_TYPE_GSM) {
326 TelephonyManager telephonyManager =
327 (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
329 if (telephonyManager != null && input.equals(MMI_IMEI_DISPLAY)) {
330 int labelResId = (telephonyManager.getPhoneType() == TelephonyManager.PHONE_TYPE_GSM) ?
334 if (TelephonyManagerCompat.getPhoneCount(telephonyManager) > 1 &&
337 for (int slot = 0; slot < telephonyManager.getPhoneCount(); slot++) {
338 String deviceId = telephonyManager.getDeviceId(slot);
344 deviceIds.add(telephonyManager.getDeviceId());