Searched refs:xmlBytes (Results 1 – 4 of 4) 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()
144 byte[] xmlBytes; in testPerformance()152 xmlBytes = out.toByteArray(); in testPerformance()157 Log.i("***", "File size: " + (xmlBytes.length / 1024) + "k"); in testPerformance()162 pureSaxTest(new ByteArrayInputStream(xmlBytes)); in testPerformance()163 saxyModelTest(new ByteArrayInputStream(xmlBytes)); in testPerformance()164 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()