Home
last modified time | relevance | path

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

/packages/modules/Connectivity/thread/framework/java/android/net/thread/
DActiveOperationalDataset.java321 private static SparseArray<byte[]> decodeChannelMask(byte[] tlvValue) { in decodeChannelMask() argument
324 while (i < tlvValue.length) { in decodeChannelMask()
325 int channelPage = tlvValue[i++] & 0xff; in decodeChannelMask()
326 if (i >= tlvValue.length) { in decodeChannelMask()
331 int maskLength = tlvValue[i++] & 0xff; in decodeChannelMask()
332 if (i + maskLength > tlvValue.length) { in decodeChannelMask()
337 i, maskLength, tlvValue.length)); in decodeChannelMask()
340 channelMask.put(channelPage, Arrays.copyOfRange(tlvValue, i, i + maskLength)); in decodeChannelMask()