Searched defs:dcs (Results 1 - 1 of 1) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimDataDownloadHandler.java114 int dcs = smsMessage.getDataCodingScheme();
170 EVENT_SEND_ENVELOPE_RESPONSE, new int[]{ dcs, pid }));
199 private void sendSmsAckForEnvelopeResponse(IccIoResult response, int dcs, int pid) { argument
245 smsAckPdu[index++] = (byte) dcs;
247 if (is7bitDcs(dcs)) {
267 * @param dcs the TP-Data-Coding-Scheme field from the original download SMS
270 private static boolean is7bitDcs(int dcs) { argument
272 return ((dcs & 0x8C) == 0x00) || ((dcs & 0xF4) == 0xF0);

Completed in 168 milliseconds