HomeSort by relevance Sort by last modified time
    Searched refs:PHONE_TYPE_CDMA (Results 1 - 25 of 74) sorted by null

1 2 3

  /frameworks/base/telephony/java/android/telephony/
CellLocation.java 64 case PhoneConstants.PHONE_TYPE_CDMA:
98 case PhoneConstants.PHONE_TYPE_CDMA:
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
TelephonyCapabilities.java 50 return (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA ||
72 return (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA);
107 } else if (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA) {
ImsSMSDispatcher.java 130 case PhoneConstants.PHONE_TYPE_CDMA:
265 (PhoneConstants.PHONE_TYPE_CDMA == mPhone.getPhoneType()) ?
392 return (PhoneConstants.PHONE_TYPE_CDMA == mPhone.getPhoneType());
Sms7BitEncodingTranslator.java 166 == PhoneConstants.PHONE_TYPE_CDMA;
  /frameworks/opt/telephony/src/java/android/telephony/gsm/
SmsMessage.java 28 import static android.telephony.TelephonyManager.PHONE_TYPE_CDMA;
155 if (PHONE_TYPE_CDMA == activePhone) {
173 if (PHONE_TYPE_CDMA == activePhone) {
247 if (PHONE_TYPE_CDMA == activePhone) {
274 if (PHONE_TYPE_CDMA == activePhone) {
305 if (PHONE_TYPE_CDMA == activePhone) {
619 if (PHONE_TYPE_CDMA == activePhone) {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TelephonyManagerTest.java 85 shadowTelephonyManager.setPhoneType( TelephonyManager.PHONE_TYPE_CDMA );
86 assertEquals(TelephonyManager.PHONE_TYPE_CDMA, telephonyManager.getPhoneType());
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
ImsSMSDispatcherTest.java 108 switchImsSmsFormat(PhoneConstants.PHONE_TYPE_CDMA);
134 switchImsSmsFormat(PhoneConstants.PHONE_TYPE_CDMA);
145 switchImsSmsFormat(PhoneConstants.PHONE_TYPE_CDMA);
148 doReturn(PhoneConstants.PHONE_TYPE_CDMA).when(mPhone).getPhoneType();
Sms7BitEncodingTranslatorTest.java 88 doReturn(PhoneConstants.PHONE_TYPE_CDMA).when(mTelephonyManager).getCurrentPhoneType();
GsmCdmaConnectionTest.java 92 doReturn(PhoneConstants.PHONE_TYPE_CDMA).when(mPhone).getPhoneType();
128 doReturn(PhoneConstants.PHONE_TYPE_CDMA).when(mPhone).getPhoneType();
164 doReturn(PhoneConstants.PHONE_TYPE_CDMA).when(mPhone).getPhoneType();
SmsNumberUtilsTest.java 147 doReturn(PhoneConstants.PHONE_TYPE_CDMA).when(mPhone).getPhoneType();
  /frameworks/base/telephony/java/com/android/internal/telephony/
PhoneConstants.java 58 public static final int PHONE_TYPE_CDMA = RILConstants.CDMA_PHONE;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/compat/
TelephonyManagerCompat.java 54 return phoneType == TelephonyManager.PHONE_TYPE_CDMA ||
  /packages/services/Telephony/src/com/android/phone/
CdmaCallOptions.java 61 if (subInfoHelper.getPhone().getPhoneType() != PhoneConstants.PHONE_TYPE_CDMA
MMIDialogActivity.java 107 if (phoneType == PhoneConstants.PHONE_TYPE_CDMA) {
CallLogger.java 162 if (conn.getCall().getPhone().getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA) {
PhoneUtils.java 219 final boolean phoneIsCdma = (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA);
624 if (phoneType == PhoneConstants.PHONE_TYPE_CDMA) {
692 if (phone.getPhoneType() == PhoneConstants.PHONE_TYPE_CDMA) {
741 if (phoneType == PhoneConstants.PHONE_TYPE_CDMA) {
    [all...]
EmergencyCallbackModeService.java 78 if (phoneInEcm == null || ((phoneInEcm.getPhoneType() != PhoneConstants.PHONE_TYPE_CDMA)
  /cts/tests/tests/telephony/src/android/telephony/cts/
TelephonyManagerTest.java 73 if (mTelephonyManager.getPhoneType() == TelephonyManager.PHONE_TYPE_CDMA) {
183 case TelephonyManager.PHONE_TYPE_CDMA:
225 case TelephonyManager.PHONE_TYPE_CDMA:
  /frameworks/opt/telephony/src/java/android/telephony/
SmsMessage.java 35 import static android.telephony.TelephonyManager.PHONE_TYPE_CDMA;
170 String format = (PHONE_TYPE_CDMA == activePhone) ?
176 format = (PHONE_TYPE_CDMA == activePhone) ?
782 return (PHONE_TYPE_CDMA == activePhone);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
TelephonyUtils.java 67 case TelephonyManager.PHONE_TYPE_CDMA:
68 return TelephonyConstants.PHONE_TYPE_CDMA;
  /tools/test/connectivity/acts/tests/google/tel/live/
TelLiveSmsTest.py 25 from acts.test_utils.tel.tel_defines import PHONE_TYPE_CDMA
565 if (ads[0].droid.telephonyGetPhoneType() != PHONE_TYPE_CDMA):
603 if (ads[0].droid.telephonyGetPhoneType() != PHONE_TYPE_CDMA):
641 if (ads[0].droid.telephonyGetPhoneType() != PHONE_TYPE_CDMA):
679 if (ads[0].droid.telephonyGetPhoneType() != PHONE_TYPE_CDMA):
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java 17 import static android.telephony.TelephonyManager.PHONE_TYPE_CDMA;
484 GsmAlphabet.TextEncodingDetails ted = (PHONE_TYPE_CDMA == activePhone) ?
500 phoneType = (activePhone == PHONE_TYPE_CDMA) ? SMS_TYPE_CDMA : SMS_TYPE_GSM;
    [all...]
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
ImeiInformation.java 74 if (phone.getPhoneType() == TelephonyManager.PHONE_TYPE_CDMA) {
  /packages/apps/Settings/src/com/android/settings/notification/
OtherSoundSettings.java 155 return activePhoneType == TelephonyManager.PHONE_TYPE_CDMA;
  /packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionService.java 648 } else if (phoneType == TelephonyManager.PHONE_TYPE_CDMA) {
    [all...]

Completed in 1644 milliseconds

1 2 3