OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dataCodingScheme
(Results
1 - 2
of
2
) sorted by null
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSmsCbMessage.java
114
int
dataCodingScheme
= header.getDataCodingScheme();
118
switch ((
dataCodingScheme
& 0xf0) >> 4) {
121
language = LANGUAGE_CODES_GROUP_0[
dataCodingScheme
& 0x0f];
126
if ((
dataCodingScheme
& 0x0f) == 0x01) {
135
language = LANGUAGE_CODES_GROUP_2[
dataCodingScheme
& 0x0f];
144
switch ((
dataCodingScheme
& 0x0c) >> 2) {
167
throw new IllegalArgumentException("Unsupported GSM
dataCodingScheme
"
168
+
dataCodingScheme
);
171
if (((
dataCodingScheme
& 0x04) >> 2) == 0x01) {
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java
636
int
dataCodingScheme
= pdu.gsmSubmitGetTpDcs();
641
if ((
dataCodingScheme
& 0x80) == 0) {
643
userDataCompressed = (0 != (
dataCodingScheme
& 0x20));
647
+ "(compression) " + (
dataCodingScheme
& 0xff));
649
switch ((
dataCodingScheme
>> 2) & 0x3) {
661
+ (
dataCodingScheme
& 0xff));
666
} else if ((
dataCodingScheme
& 0xf0) == 0xf0) {
669
if (0 == (
dataCodingScheme
& 0x04)) {
676
} else if ((
dataCodingScheme
& 0xF0) == 0xC0
677
|| (
dataCodingScheme
& 0xF0) == 0xD
[
all
...]
Completed in 176 milliseconds