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

/frameworks/base/obex/javax/obex/
H A DObexHelper.java819 * array should be of the form Tag - Length - Value triplet.
821 * @param triplet the byte sequence containing the tag length value form
824 public static byte[] getTagValue(byte tag, byte[] triplet) { argument
826 int index = findTag(tag, triplet);
832 int length = triplet[index] & 0xFF;
836 System.arraycopy(triplet, index, result, 0, length);

Completed in 30 milliseconds