Searched refs:TlvConstructor (Results 1 – 3 of 3) sorted by relevance
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/nan/ |
D | TlvBufferUtilsTest.java | 46 TlvBufferUtils.TlvConstructor tlv11 = new TlvBufferUtils.TlvConstructor(1, 1); in testTlvBuild() 57 TlvBufferUtils.TlvConstructor tlv01 = new TlvBufferUtils.TlvConstructor(0, 1); in testTlvBuild() 71 TlvBufferUtils.TlvConstructor tlv22 = new TlvBufferUtils.TlvConstructor(2, 2); in testTlvIterate() 104 TlvBufferUtils.TlvConstructor tlv02 = new TlvBufferUtils.TlvConstructor(0, 2); in testTlvIterate() 136 TlvBufferUtils.TlvConstructor tlv10 = new TlvBufferUtils.TlvConstructor(1, 0); in testTlvInvalidSizeT1L0() 142 TlvBufferUtils.TlvConstructor tlv10 = new TlvBufferUtils.TlvConstructor(-3, 2); in testTlvInvalidSizeTm3L2() 148 TlvBufferUtils.TlvConstructor tlv10 = new TlvBufferUtils.TlvConstructor(1, -2); in testTlvInvalidSizeT1Lm2() 154 TlvBufferUtils.TlvConstructor tlv10 = new TlvBufferUtils.TlvConstructor(1, 3); in testTlvInvalidSizeT1L3() 160 TlvBufferUtils.TlvConstructor tlv10 = new TlvBufferUtils.TlvConstructor(3, 1); in testTlvInvalidSizeT3L1()
|
D | WifiNanHalTest.java | 117 TlvBufferUtils.TlvConstructor tlvTx = new TlvBufferUtils.TlvConstructor(0, 1); in testPublishUnsolicited() 121 TlvBufferUtils.TlvConstructor tlvRx = new TlvBufferUtils.TlvConstructor(0, 1); in testPublishUnsolicited() 138 TlvBufferUtils.TlvConstructor tlvTx = new TlvBufferUtils.TlvConstructor(0, 1); in testPublishSolicited() 142 TlvBufferUtils.TlvConstructor tlvRx = new TlvBufferUtils.TlvConstructor(0, 1); in testPublishSolicited() 173 TlvBufferUtils.TlvConstructor tlvTx = new TlvBufferUtils.TlvConstructor(0, 1); in testSubscribePassive() 177 TlvBufferUtils.TlvConstructor tlvRx = new TlvBufferUtils.TlvConstructor(0, 1); in testSubscribePassive() 194 TlvBufferUtils.TlvConstructor tlvTx = new TlvBufferUtils.TlvConstructor(0, 1); in testSubscribeActive() 198 TlvBufferUtils.TlvConstructor tlvRx = new TlvBufferUtils.TlvConstructor(0, 1); in testSubscribeActive() 650 String serviceName, String ssi, TlvBufferUtils.TlvConstructor tlvTx, in testPublish() 651 TlvBufferUtils.TlvConstructor tlvRx, int publishCount, int publishTtl) in testPublish() [all …]
|
/frameworks/base/wifi/java/android/net/wifi/nan/ |
D | TlvBufferUtils.java | 56 public static class TlvConstructor { class in TlvBufferUtils 75 public TlvConstructor(int typeSize, int lengthSize) { in TlvConstructor() method in TlvBufferUtils.TlvConstructor 91 public TlvConstructor wrap(byte[] array) { in wrap() 104 public TlvConstructor allocate(int capacity) { in allocate() 120 public TlvConstructor putByte(int type, byte b) { in putByte() 140 public TlvConstructor putByteArray(int type, byte[] array, int offset, int length) { in putByteArray() 158 public TlvConstructor putByteArray(int type, byte[] array) { in putByteArray() 172 public TlvConstructor putZeroLengthElement(int type) { in putZeroLengthElement() 188 public TlvConstructor putShort(int type, short data) { in putShort() 206 public TlvConstructor putInt(int type, int data) { in putInt() [all …]
|