/packages/apps/Contacts/src/com/android/contacts/ |
D | SpecialCharSequenceMgr.java | 153 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 …]
|
D | ContactListEmptyView.java | 70 TelephonyManager telephonyManager = in show() local 72 boolean hasSim = telephonyManager.hasIccCard(); in show()
|
/packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/ |
D | ImsFrameworkApp.java | 107 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/ |
D | PhoneCapabilityTester.java | 61 final TelephonyManager telephonyManager = new TelephonyManager(context); in initialize() local 62 sIsPhone = telephonyManager.isVoiceCapable(); in initialize()
|
/packages/apps/Phone/src/com/android/phone/ |
D | OtaStartupReceiver.java | 121 TelephonyManager telephonyManager = (TelephonyManager)context.getSystemService( in onReceive() local 123 telephonyManager.listen(mPhoneStateListener, PhoneStateListener.LISTEN_OTASP_CHANGED); in onReceive()
|
D | OtaUtils.java | 1626 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()
|
D | CallNotifier.java | 232 TelephonyManager telephonyManager = (TelephonyManager)app.getSystemService( in CallNotifier() local 234 telephonyManager.listen(mPhoneStateListener, in CallNotifier()
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
D | WifiSettings.java | 684 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/ |
D | DialogSmsDisplayTests.java | 77 TelephonyManager telephonyManager = ((TelephonyManager)dialogSmsDisplayActivity in setUp() local 80 mMyNumber = telephonyManager.getLine1Number(); in setUp()
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
D | Util.java | 466 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/ |
D | Util.java | 521 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/ |
D | DialpadFragment.java | 537 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/ |
D | ContactEntryListFragment.java | 908 TelephonyManager telephonyManager = in hasIccCard() local 910 return telephonyManager.hasIccCard(); in hasIccCard()
|