Home
last modified time | relevance | path

Searched refs:doGet (Results 1 – 6 of 6) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/util/net/
DHttpHelperTest.java103 assertEquals(TEST_DATA, mHelper.doGet(TEST_URL_STRING)); in testDoGet()
122 mHelper.doGet(TEST_URL_STRING); in testDoGet_datasize()
134 mHelper.doGet(TEST_URL_STRING, out); in testDoGetStream()
178 public String doGet(String url) throws IOException { in testDoGetWithRetry_ioexception()
209 public String doGet(String url) throws IOException, DataSizeException { in testDoGetWithRetry_retry()
214 return super.doGet(url); in testDoGetWithRetry_retry()
DHttpHelperFuncTest.java66 http.doGet(url); in testTimeout()
107 http.doGet(url); in testNoTimeout()
/tools/tradefederation/core/tests/src/com/android/tradefed/config/remote/
DHttpRemoteFileResolverTest.java62 .doGet(Mockito.eq("http://fake/HttpRemoteFileResolverTest"), Mockito.any()); in testResolve()
69 .doGet(Mockito.eq("http://fake/HttpRemoteFileResolverTest"), Mockito.any()); in testResolve_error()
83 .doGet(Mockito.eq("http://fake/HttpRemoteFileResolverTest"), Mockito.any()); in testResolve_error()
/tools/tradefederation/core/common_util/com/android/tradefed/util/net/
DHttpHelper.java99 public String doGet(String url) throws IOException, DataSizeException { in doGet() method in HttpHelper
130 public void doGet(String url, OutputStream outputStream) throws IOException { in doGet() method in HttpHelper
323 setResponse(doGet(getUrl())); in run()
DIHttpHelper.java84 public String doGet(String url) throws IOException, DataSizeException; in doGet() method
95 public void doGet(String url, OutputStream outputStream) throws IOException; in doGet() method
/tools/tradefederation/core/src/com/android/tradefed/config/remote/
DHttpRemoteFileResolver.java52 downloader.doGet(path, new FileOutputStream(downloadedFile)); in resolveRemoteFiles()