HomeSort by relevance Sort by last modified time
    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 640 int dataCodingScheme = pdu.gsmSubmitGetTpDcs();
645 if ((dataCodingScheme & 0x80) == 0) {
647 userDataCompressed = (0 != (dataCodingScheme & 0x20));
651 + "(compression) " + (dataCodingScheme & 0xff));
653 switch ((dataCodingScheme >> 2) & 0x3) {
665 + (dataCodingScheme & 0xff));
670 } else if ((dataCodingScheme & 0xf0) == 0xf0) {
673 if (0 == (dataCodingScheme & 0x04)) {
680 } else if ((dataCodingScheme & 0xF0) == 0xC0
681 || (dataCodingScheme & 0xF0) == 0xD
    [all...]

Completed in 59 milliseconds