Searched refs:xmlBytes (Results 1 – 5 of 5) sorted by relevance
193 byte[] xmlBytes = readFully(xmlStream); in testConversion()194 assertNotNull(xmlBytes); in testConversion()196 assertEquals(TEST_EXPECTED_XML_STRING, new String(xmlBytes)); in testConversion()
148 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()
253 byte[] xmlBytes = convertConfToXml(softApConf); in convert()254 if (xmlBytes == null) return null; in convert()256 return new ByteArrayInputStream(xmlBytes); in convert()
122 static Element getXmlRootNode(byte[] xmlBytes) throws CertParsingException { in getXmlRootNode() argument127 .parse(new ByteArrayInputStream(xmlBytes)); in getXmlRootNode()
548 byte[] xmlBytes = xmlString.getBytes(StandardCharsets.UTF_8); in testReadWifiConfigStoreData()549 mUserStore.storeRawDataToWrite(xmlBytes); in testReadWifiConfigStoreData()