OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:activePhone
(Results
1 - 6
of
6
) sorted by null
/frameworks/opt/telephony/src/java/android/telephony/gsm/
SmsMessage.java
153
int
activePhone
= TelephonyManager.getDefault().getCurrentPhoneType();
155
if (PHONE_TYPE_CDMA ==
activePhone
) {
171
int
activePhone
= TelephonyManager.getDefault().getCurrentPhoneType();
173
if (PHONE_TYPE_CDMA ==
activePhone
) {
245
int
activePhone
= TelephonyManager.getDefault().getCurrentPhoneType();
247
if (PHONE_TYPE_CDMA ==
activePhone
) {
272
int
activePhone
= TelephonyManager.getDefault().getCurrentPhoneType();
274
if (PHONE_TYPE_CDMA ==
activePhone
) {
303
int
activePhone
= TelephonyManager.getDefault().getCurrentPhoneType();
305
if (PHONE_TYPE_CDMA ==
activePhone
) {
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
CallManager.java
526
Phone
activePhone
= getActiveFgCall().getPhone();
527
boolean hasBgCall = ! (
activePhone
.getBackgroundCall().isIdle());
528
boolean sameChannel = (
activePhone
== ringingPhone);
537
activePhone
.switchHoldingAndActive();
612
Phone
activePhone
= null;
621
activePhone
= getActiveFgCall().getPhone();
628
if (
activePhone
!= null) {
629
activePhone
.switchHoldingAndActive();
632
if (heldPhone != null && heldPhone !=
activePhone
) {
685
Phone
activePhone
= null
[
all
...]
InboundSmsHandler.java
[
all
...]
/frameworks/opt/telephony/src/java/android/telephony/
SmsMessage.java
143
int
activePhone
= TelephonyManager.getDefault().getCurrentPhoneType();
144
String format = (PHONE_TYPE_CDMA ==
activePhone
) ?
149
// decoding pdu failed based on
activePhone
type, must be other format
150
format = (PHONE_TYPE_CDMA ==
activePhone
) ?
720
int
activePhone
= TelephonyManager.getDefault().getCurrentPhoneType();
721
return (PHONE_TYPE_CDMA ==
activePhone
);
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsMessageBodyTest.java
561
int
activePhone
= TelephonyManager.getDefault().getPhoneType();
562
if (TelephonyManager.PHONE_TYPE_GSM ==
activePhone
) {
583
int
activePhone
= TelephonyManager.getDefault().getPhoneType();
584
if (TelephonyManager.PHONE_TYPE_CDMA ==
activePhone
) {
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java
471
int
activePhone
= TelephonyManager.getDefault().getCurrentPhoneType(); // TODO: Change to use: ((TelephonyManager)myContext.getSystemService(Context.TELEPHONY_SERVICE))
473
GsmAlphabet.TextEncodingDetails ted = (PHONE_TYPE_CDMA ==
activePhone
) ?
489
phoneType = (
activePhone
== PHONE_TYPE_CDMA) ? SMS_TYPE_CDMA : SMS_TYPE_GSM;
Completed in 966 milliseconds