Searched refs:doPostWithRetry (Results 1 – 5 of 5) sorted by relevance
/tools/tradefederation/core/src/com/android/tradefed/util/net/ |
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 | 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 | HttpMultipartPost.java | 121 mHelper.doPostWithRetry(mUrl, mBuilder.toString(), in send()
|
/tools/tradefederation/core/tests/src/com/android/tradefed/util/net/ |
D | HttpHelperTest.java | 231 assertEquals(TEST_DATA, mHelper.doPostWithRetry(TEST_URL_STRING, TEST_POST_DATA)); in testDoPostWithRetry() 250 mHelper.doPostWithRetry(TEST_URL_STRING, TEST_POST_DATA); in testDoPostWithRetry_datasize() 272 mHelper.doPostWithRetry(TEST_URL_STRING, TEST_POST_DATA); in testDoPostWithRetry_ioexception() 299 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()
|