Home
last modified time | relevance | path

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

/frameworks/base/wifi/tests/src/android/net/wifi/
DSoftApConfToXmlMigrationUtilTest.java193 byte[] xmlBytes = readFully(xmlStream); in testConversion()
194 assertNotNull(xmlBytes); in testConversion()
196 assertEquals(TEST_EXPECTED_XML_STRING, new String(xmlBytes)); in testConversion()
/frameworks/base/sax/tests/saxtests/src/android/sax/
DSafeSaxTest.java148 byte[] xmlBytes; in testPerformance()
156 xmlBytes = out.toByteArray(); in testPerformance()
161 Log.i("***", "File size: " + (xmlBytes.length / 1024) + "k"); in testPerformance()
166 pureSaxTest(new ByteArrayInputStream(xmlBytes)); in testPerformance()
167 saxyModelTest(new ByteArrayInputStream(xmlBytes)); in testPerformance()
168 saxyModelTest(new ByteArrayInputStream(xmlBytes), handler); in testPerformance()
/frameworks/base/wifi/java/android/net/wifi/
DSoftApConfToXmlMigrationUtil.java253 byte[] xmlBytes = convertConfToXml(softApConf); in convert()
254 if (xmlBytes == null) return null; in convert()
256 return new ByteArrayInputStream(xmlBytes); in convert()
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/certificate/
DCertUtils.java122 static Element getXmlRootNode(byte[] xmlBytes) throws CertParsingException { in getXmlRootNode() argument
127 .parse(new ByteArrayInputStream(xmlBytes)); in getXmlRootNode()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiConfigStoreTest.java548 byte[] xmlBytes = xmlString.getBytes(StandardCharsets.UTF_8); in testReadWifiConfigStoreData()
549 mUserStore.storeRawDataToWrite(xmlBytes); in testReadWifiConfigStoreData()