Searched refs:langLength (Results 1 – 1 of 1) sorted by relevance
/packages/apps/Nfc/src/com/android/nfc/snep/ |
D | SnepMessage.java | 107 int langLength = langBytes.length; in getLargeNdef() local 110 byte[] payload = new byte[1 + langLength + textLength]; in getLargeNdef() 111 payload[0] = (byte) langLength; in getLargeNdef() 113 System.arraycopy(langBytes, 0, payload, 1, langLength); in getLargeNdef() 114 System.arraycopy(textBytes, 0, payload, 1 + langLength, textLength); in getLargeNdef() 125 int langLength = langBytes.length; in getSmallNdef() local 128 byte[] payload = new byte[1 + langLength + textLength]; in getSmallNdef() 129 payload[0] = (byte) langLength; in getSmallNdef() 131 System.arraycopy(langBytes, 0, payload, 1, langLength); in getSmallNdef() 132 System.arraycopy(textBytes, 0, payload, 1 + langLength, textLength); in getSmallNdef()
|