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

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

Completed in 95 milliseconds