Home
last modified time | relevance | path

Searched refs:telephonyManager (Results 1 – 13 of 13) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/
DSpecialCharSequenceMgr.java153 TelephonyManager telephonyManager = in handleAdnEntry() local
155 if (telephonyManager == null in handleAdnEntry()
156 || !TelephonyCapabilities.supportsAdn(telephonyManager.getCurrentPhoneType())) { in handleAdnEntry()
238 TelephonyManager telephonyManager = in handleIMEIDisplay() local
240 if (telephonyManager != null && input.equals(MMI_IMEI_DISPLAY)) { in handleIMEIDisplay()
241 int phoneType = telephonyManager.getCurrentPhoneType(); in handleIMEIDisplay()
243 showIMEIPanel(context, useSystemWindow, telephonyManager); in handleIMEIDisplay()
246 showMEIDPanel(context, useSystemWindow, telephonyManager); in handleIMEIDisplay()
261 TelephonyManager telephonyManager) { in showIMEIPanel() argument
262 String imeiStr = telephonyManager.getDeviceId(); in showIMEIPanel()
[all …]
DContactListEmptyView.java70 TelephonyManager telephonyManager = in show() local
72 boolean hasSim = telephonyManager.hasIccCard(); in show()
/packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
DImsFrameworkApp.java107 TelephonyManager telephonyManager = in handleSimRecordsLoaded() local
110 Log.d(TAG, "ISIM IMPI: " + telephonyManager.getIsimImpi()); in handleSimRecordsLoaded()
111 Log.d(TAG, "ISIM Domain: " + telephonyManager.getIsimDomain()); in handleSimRecordsLoaded()
112 Log.d(TAG, "ISIM IMPU: " + Arrays.toString(telephonyManager.getIsimImpu())); in handleSimRecordsLoaded()
/packages/apps/Contacts/src/com/android/contacts/util/
DPhoneCapabilityTester.java61 final TelephonyManager telephonyManager = new TelephonyManager(context); in initialize() local
62 sIsPhone = telephonyManager.isVoiceCapable(); in initialize()
/packages/apps/Phone/src/com/android/phone/
DOtaStartupReceiver.java121 TelephonyManager telephonyManager = (TelephonyManager)context.getSystemService( in onReceive() local
123 telephonyManager.listen(mPhoneStateListener, PhoneStateListener.LISTEN_OTASP_CHANGED); in onReceive()
DOtaUtils.java1626 final TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService( in getLteOnCdmaMode() local
1630 if (telephonyManager == null in getLteOnCdmaMode()
1631 || telephonyManager.getLteOnCdmaMode() == PhoneConstants.LTE_ON_CDMA_UNKNOWN) { in getLteOnCdmaMode()
1635 return telephonyManager.getLteOnCdmaMode(); in getLteOnCdmaMode()
DCallNotifier.java232 TelephonyManager telephonyManager = (TelephonyManager)app.getSystemService( in CallNotifier() local
234 telephonyManager.listen(mPhoneStateListener, in CallNotifier()
/packages/apps/Settings/src/com/android/settings/wifi/
DWifiSettings.java684 final TelephonyManager telephonyManager = (TelephonyManager)this.getSystemService(
686 return telephonyManager != null
687 && telephonyManager.getPhoneType() != TelephonyManager.PHONE_TYPE_NONE;
695 final TelephonyManager telephonyManager = (TelephonyManager)this.getSystemService(
697 return telephonyManager != null
698 && telephonyManager.getCurrentPhoneType() == TelephonyManager.PHONE_TYPE_GSM
699 && telephonyManager.getSimState() != TelephonyManager.SIM_STATE_READY
700 && telephonyManager.getSimState() != TelephonyManager.SIM_STATE_UNKNOWN;
/packages/apps/BasicSmsReceiver/tests/src/com/android/basicsmsreceiver/
DDialogSmsDisplayTests.java77 TelephonyManager telephonyManager = ((TelephonyManager)dialogSmsDisplayActivity in setUp() local
80 mMyNumber = telephonyManager.getLine1Number(); in setUp()
/packages/apps/LegacyCamera/src/com/android/camera/
DUtil.java466 TelephonyManager telephonyManager = (TelephonyManager) in isMmsCapable() local
468 if (telephonyManager == null) { in isMmsCapable()
478 Object retobj = sIsVoiceCapable.invoke(telephonyManager, arglist); in isMmsCapable()
/packages/apps/Camera/src/com/android/camera/
DUtil.java521 TelephonyManager telephonyManager = (TelephonyManager) in isMmsCapable() local
523 if (telephonyManager == null) { in isMmsCapable()
533 Object retobj = sIsVoiceCapable.invoke(telephonyManager, arglist); in isMmsCapable()
/packages/apps/Contacts/src/com/android/contacts/dialpad/
DDialpadFragment.java537 TelephonyManager telephonyManager = in onResume() local
539 telephonyManager.listen(mPhoneStateListener, PhoneStateListener.LISTEN_CALL_STATE); in onResume()
580 TelephonyManager telephonyManager = in onPause() local
582 telephonyManager.listen(mPhoneStateListener, PhoneStateListener.LISTEN_NONE); in onPause()
/packages/apps/Contacts/src/com/android/contacts/list/
DContactEntryListFragment.java908 TelephonyManager telephonyManager = in hasIccCard() local
910 return telephonyManager.hasIccCard(); in hasIccCard()