OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PHONE_TYPE_CDMA
(Results
1 - 25
of
55
) sorted by null
1
2
3
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
TelephonyCapabilities.java
48
return (phone.getPhoneType() == PhoneConstants.
PHONE_TYPE_CDMA
);
69
return (phone.getPhoneType() == PhoneConstants.
PHONE_TYPE_CDMA
);
78
return (phone.getPhoneType() == PhoneConstants.
PHONE_TYPE_CDMA
);
104
} else if (phone.getPhoneType() == PhoneConstants.
PHONE_TYPE_CDMA
) {
ImsSMSDispatcher.java
130
case PhoneConstants.
PHONE_TYPE_CDMA
:
210
(PhoneConstants.
PHONE_TYPE_CDMA
== mPhone.getPhoneType()) ?
335
return (PhoneConstants.
PHONE_TYPE_CDMA
== mPhone.getPhoneType());
PhoneFactory.java
124
} else if (phoneType == PhoneConstants.
PHONE_TYPE_CDMA
) {
InboundSmsHandler.java
49
import static android.telephony.TelephonyManager.
PHONE_TYPE_CDMA
;
[
all
...]
/frameworks/base/telephony/java/android/telephony/
CellLocation.java
67
case PhoneConstants.
PHONE_TYPE_CDMA
:
95
case PhoneConstants.
PHONE_TYPE_CDMA
:
TelephonyManager.java
385
public static final int
PHONE_TYPE_CDMA
= PhoneConstants.
PHONE_TYPE_CDMA
;
395
* @see #
PHONE_TYPE_CDMA
426
* @see #
PHONE_TYPE_CDMA
467
return PhoneConstants.
PHONE_TYPE_CDMA
;
481
return PhoneConstants.
PHONE_TYPE_CDMA
;
485
return PhoneConstants.
PHONE_TYPE_CDMA
;
[
all
...]
/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/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/base/telephony/java/com/android/internal/telephony/
PhoneConstants.java
58
public static final int
PHONE_TYPE_CDMA
= RILConstants.CDMA_PHONE;
/packages/services/Telephony/src/com/android/phone/
CdmaCallOptions.java
47
if (PhoneGlobals.getPhone().getPhoneType() != PhoneConstants.
PHONE_TYPE_CDMA
MMIDialogActivity.java
93
if (phoneType == PhoneConstants.
PHONE_TYPE_CDMA
) {
EmergencyCallbackModeService.java
77
if (PhoneFactory.getDefaultPhone().getPhoneType() != PhoneConstants.
PHONE_TYPE_CDMA
) {
CallNotifier.java
688
if (fgPhone.getPhoneType() == PhoneConstants.
PHONE_TYPE_CDMA
) {
736
if (fgPhone.getPhoneType() == PhoneConstants.
PHONE_TYPE_CDMA
)
[
all
...]
BluetoothPhoneService.java
242
if (mCM.getDefaultPhone().getPhoneType() == PhoneConstants.
PHONE_TYPE_CDMA
) {
300
if (mCM.getDefaultPhone().getPhoneType() == PhoneConstants.
PHONE_TYPE_CDMA
&&
330
if (phoneType == PhoneConstants.
PHONE_TYPE_CDMA
) {
747
if (phoneType == PhoneConstants.
PHONE_TYPE_CDMA
) {
768
if (phoneType == PhoneConstants.
PHONE_TYPE_CDMA
) {
[
all
...]
PhoneUtils.java
278
final boolean phoneIsCdma = (phone.getPhoneType() == PhoneConstants.
PHONE_TYPE_CDMA
);
451
if (phoneType == PhoneConstants.
PHONE_TYPE_CDMA
) {
743
if (phoneType == PhoneConstants.
PHONE_TYPE_CDMA
) {
[
all
...]
CallLogger.java
184
if (conn.getCall().getPhone().getPhoneType() == PhoneConstants.
PHONE_TYPE_CDMA
) {
DTMFTonePlayer.java
370
} else if (phoneType == PhoneConstants.
PHONE_TYPE_CDMA
) {
/frameworks/opt/telephony/src/java/android/telephony/
SmsMessage.java
32
import static android.telephony.TelephonyManager.
PHONE_TYPE_CDMA
;
144
String format = (
PHONE_TYPE_CDMA
== activePhone) ?
150
format = (
PHONE_TYPE_CDMA
== activePhone) ?
721
return (
PHONE_TYPE_CDMA
== activePhone);
/cts/tests/tests/telephony/src/android/telephony/cts/
TelephonyManagerTest.java
63
if (mTelephonyManager.getPhoneType() == TelephonyManager.
PHONE_TYPE_CDMA
) {
177
case TelephonyManager.
PHONE_TYPE_CDMA
:
SmsManagerTest.java
264
if (mTelephonyManager.getPhoneType() == TelephonyManager.
PHONE_TYPE_CDMA
) {
SmsMessageTest.java
240
if (mTelephonyManager.getPhoneType() == TelephonyManager.
PHONE_TYPE_CDMA
) {
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java
17
import static android.telephony.TelephonyManager.
PHONE_TYPE_CDMA
;
473
GsmAlphabet.TextEncodingDetails ted = (
PHONE_TYPE_CDMA
== activePhone) ?
489
phoneType = (activePhone ==
PHONE_TYPE_CDMA
) ? SMS_TYPE_CDMA : SMS_TYPE_GSM;
/packages/apps/Settings/src/com/android/settings/
SoundSettings.java
139
if (TelephonyManager.
PHONE_TYPE_CDMA
!= activePhoneType) {
184
if (TelephonyManager.
PHONE_TYPE_CDMA
== activePhoneType) {
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiver.java
197
isCdma = (phone.getActivePhoneType() == TelephonyManager.
PHONE_TYPE_CDMA
);
/cts/tests/tests/app/src/android/app/cts/
SystemFeaturesTest.java
321
case TelephonyManager.
PHONE_TYPE_CDMA
:
Completed in 487 milliseconds
1
2
3