Home
last modified time | relevance | path

Searched refs:inputSource (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DStreamUtilTest.java125 ByteArrayInputStream inputSource = new ByteArrayInputStream(source.getBytes()); in testCalculateMd5() local
126 String actualMd5 = StreamUtil.calculateMd5(inputSource); in testCalculateMd5()
/tools/tradefederation/core/src/com/android/tradefed/util/
DStreamUtil.java307 public static String calculateMd5(InputStream inputSource) throws IOException { in calculateMd5() argument
315 InputStream input = new BufferedInputStream(new DigestInputStream(inputSource, md)); in calculateMd5()
/tools/tradefederation/core/tests/src/com/android/tradefed/result/suite/
DXmlSuiteResultFormatterTest.java268 InputSource inputSource = new InputSource(new StringReader(xml)); in getXmlNodes() local
270 return (NodeList) xpath.evaluate(xPathExpression, inputSource, XPathConstants.NODESET); in getXmlNodes()