Home
last modified time | relevance | path

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

/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/anqp/
H A DIconInfo.java76 ByteBufferReader.readStringWithByteLength(payload, StandardCharsets.US_ASCII); in parse()
78 ByteBufferReader.readStringWithByteLength(payload, StandardCharsets.UTF_8); in parse()
H A DOsuProviderInfo.java122 ByteBufferReader.readStringWithByteLength(payload, StandardCharsets.UTF_8)); in parse()
142 String nai = ByteBufferReader.readStringWithByteLength(payload, StandardCharsets.UTF_8); in parse()
H A DDomainNameElement.java60 domains.add(ByteBufferReader.readStringWithByteLength( in parse()
H A DHSIconFileElement.java86 ByteBufferReader.readStringWithByteLength(payload, StandardCharsets.US_ASCII); in parse()
H A DNAIRealmData.java79 String realm = ByteBufferReader.readStringWithByteLength( in parse()
/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DByteBufferReaderTest.java159 public void readStringWithByteLength() throws Exception { in readStringWithByteLength() method in ByteBufferReaderTest
167 ByteBufferReader.readStringWithByteLength(buffer, StandardCharsets.US_ASCII); in readStringWithByteLength()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DByteBufferReader.java94 public static String readStringWithByteLength(ByteBuffer payload, Charset charset) { in readStringWithByteLength() method in ByteBufferReader