OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tlv02
(Results
1 - 1
of
1
) sorted by null
/frameworks/base/wifi/tests/src/android/net/wifi/aware/
TlvBufferUtilsTest.java
161
TlvBufferUtils.TlvConstructor
tlv02
= new TlvBufferUtils.TlvConstructor(0, 2);
local
162
tlv02
.allocate(100);
163
tlv02
.putByte(0, (byte) 2);
164
tlv02
.putString(0, ascii);
165
tlv02
.putString(0, nonAscii);
167
TlvBufferUtils.TlvIterable tlv02It = new TlvBufferUtils.TlvIterable(0, 2,
tlv02
.getArray());
171
collector.checkThat("
tlv02
-correct-iteration-mLength", tlv.length, equalTo(1));
172
collector.checkThat("
tlv02
-correct-iteration-DATA", (int) tlv.getByte(),
175
collector.checkThat("
tlv02
-correct-iteration-mLength", tlv.length,
177
collector.checkThat("
tlv02
-correct-iteration-DATA", tlv.getString().equals(ascii)
[
all
...]
Completed in 122 milliseconds