Home
last modified time | relevance | path

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

/frameworks/base/wifi/tests/src/android/net/wifi/aware/
DTlvBufferUtilsTest.java107 List<byte[]> parsedList = new TlvBufferUtils.TlvIterable(0, 1, tlvData).toList(); in testTlvListOperations()
125 List<byte[]> parsedList = new TlvBufferUtils.TlvIterable(0, 1, validTlv01).toList(); in testTlvParseToList()
140 List<byte[]> data = new TlvBufferUtils.TlvIterable(0, 1, invalidTlv01).toList(); in testTlvParseToListError()
171 TlvBufferUtils.TlvIterable tlv22It = new TlvBufferUtils.TlvIterable(2, 2, tlv22.getArray()); in testTlvIterate()
204 TlvBufferUtils.TlvIterable tlv02It = new TlvBufferUtils.TlvIterable(0, 2, tlv02.getArray()); in testTlvIterate()
273 TlvBufferUtils.TlvIterable tlvIt10 = new TlvBufferUtils.TlvIterable(1, 0, dummy); in testTlvItInvalidSizeT1L0()
281 TlvBufferUtils.TlvIterable tlvIt10 = new TlvBufferUtils.TlvIterable(-3, 2, dummy); in testTlvItInvalidSizeTm3L2()
289 TlvBufferUtils.TlvIterable tlvIt10 = new TlvBufferUtils.TlvIterable(1, -2, dummy); in testTlvItInvalidSizeT1Lm2()
297 TlvBufferUtils.TlvIterable tlvIt10 = new TlvBufferUtils.TlvIterable(1, 3, dummy); in testTlvItInvalidSizeT1L3()
305 TlvBufferUtils.TlvIterable tlvIt10 = new TlvBufferUtils.TlvIterable(3, 1, dummy); in testTlvItInvalidSizeT3L1()
DWifiAwareManagerTest.java339 List<byte[]> parsedMatchFilter = new TlvBufferUtils.TlvIterable(0, 1, matchFilter).toList(); in testPublishFlow()
751 new TlvBufferUtils.TlvIterable(0, 1, matchFilter).toList()) in testSubscribeConfigBuilder()
787 new TlvBufferUtils.TlvIterable(0, 1, matchFilter).toList()) in testSubscribeConfigParcel()
850 new TlvBufferUtils.TlvIterable(0, 1, matchFilter).toList()) in testPublishConfigBuilder()
880 new TlvBufferUtils.TlvIterable(0, 1, matchFilter).toList()) in testPublishConfigParcel()
/frameworks/base/wifi/java/android/net/wifi/aware/
DTlvBufferUtils.java479 public static class TlvIterable implements Iterable<TlvElement> { class in TlvBufferUtils
498 public TlvIterable(int typeSize, int lengthSize, @Nullable byte[] array) { in TlvIterable() method in TlvBufferUtils.TlvIterable
DPublishConfig.java109 + (new TlvBufferUtils.TlvIterable(0, 1, mMatchFilter)).toString() in toString()
DSubscribeConfig.java120 + (new TlvBufferUtils.TlvIterable(0, 1, mMatchFilter)).toString() in toString()
DWifiAwareManager.java640 matchFilter = new TlvBufferUtils.TlvIterable(0, 1, arg).toList(); in WifiAwareDiscoverySessionCallbackProxy()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
DWifiAwareDataPathStateManager.java1642 TlvBufferUtils.TlvIterable tlvi = new TlvBufferUtils.TlvIterable(1, 2, tlvs); in parseTlv()
1697 TlvBufferUtils.TlvIterable subTlvi = new TlvBufferUtils.TlvIterable(1, in parseServiceInfoTlv()