Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/util/net/
DHttpHelperTest.java109 assertEquals(TEST_DATA, mHelper.doGet(TEST_URL_STRING)); in testDoGet()
127 mHelper.doGet(TEST_URL_STRING); in testDoGet_datasize()
140 mHelper.doGet(TEST_URL_STRING, out); in testDoGetStream()
183 public String doGet(String url) throws IOException { in testDoGetWithRetry_ioexception()
213 public String doGet(String url) throws IOException, DataSizeException { in testDoGetWithRetry_retry()
218 return super.doGet(url); in testDoGetWithRetry_retry()
DHttpHelperFuncTest.java66 http.doGet(url); in testTimeout()
107 http.doGet(url); in testNoTimeout()
/tools/tradefederation/core/src/com/android/tradefed/util/net/
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
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()
/tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
DBandwidthMicroBenchMarkTest.java234 String serverResponse = mHttpHelper.doGet(mHttpHelper.buildUrl(mBaseUrl, mParams)); in run()