Home
last modified time | relevance | path

Searched refs:encodedString (Results 1 – 2 of 2) sorted by relevance

/packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/
DDialogSmsDisplayTests.java93 byte[] encodedString; in encodeCellBroadcast()
95 encodedString = message.getBytes("UTF-16"); in encodeCellBroadcast()
96 System.arraycopy(encodedString, 0, pdu, 6, encodedString.length); in encodeCellBroadcast()
99 encodedString = GsmAlphabet.stringToGsm7BitPacked(message); in encodeCellBroadcast()
100 System.arraycopy(encodedString, 1, pdu, 6, encodedString.length-1); in encodeCellBroadcast()
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
DRawContactModifier.java882 final String encodedString = bundle.getString(Insert.IM_PROTOCOL); in fixupLegacyImType() local
883 if (encodedString == null) return; in fixupLegacyImType()
887 .decodeImProtocol(encodedString); in fixupLegacyImType()