Searched refs:doPostWithRetry (Results 1 – 5 of 5) sorted by relevance
/tools/tradefederation/core/tests/src/com/android/tradefed/util/net/ |
D | HttpHelperTest.java | 226 assertEquals(TEST_DATA, mHelper.doPostWithRetry(TEST_URL_STRING, TEST_POST_DATA)); in testDoPostWithRetry() 246 mHelper.doPostWithRetry(TEST_URL_STRING, TEST_POST_DATA); in testDoPostWithRetry_datasize() 269 mHelper.doPostWithRetry(TEST_URL_STRING, TEST_POST_DATA); in testDoPostWithRetry_ioexception() 298 assertEquals(TEST_DATA, mHelper.doPostWithRetry(TEST_URL_STRING, TEST_POST_DATA)); in testDoPostWithRetry_retry()
|
D | HttpMultipartPostTest.java | 61 EasyMock.expect(mHelper.doPostWithRetry("www.example.com", expectedContents, in testSendRequest()
|
/tools/tradefederation/core/common_util/com/android/tradefed/util/net/ |
D | HttpHelper.java | 233 public String doPostWithRetry(String url, String postData, String contentType) in doPostWithRetry() method in HttpHelper 254 public String doPostWithRetry(String url, String postData) throws IOException, in doPostWithRetry() method in HttpHelper 256 return doPostWithRetry(url, postData, null); in doPostWithRetry()
|
D | IHttpHelper.java | 143 public String doPostWithRetry(String url, String postData) throws IOException, in doPostWithRetry() method 160 public String doPostWithRetry(String url, String postData, String contentType) in doPostWithRetry() method
|
D | HttpMultipartPost.java | 121 mHelper.doPostWithRetry(mUrl, mBuilder.toString(), in send()
|