Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/util/net/
DIHttpHelper.java143 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
DHttpHelper.java233 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()
DHttpMultipartPost.java121 mHelper.doPostWithRetry(mUrl, mBuilder.toString(), in send()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/net/
DHttpHelperTest.java231 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()
DHttpMultipartPostTest.java61 EasyMock.expect(mHelper.doPostWithRetry("www.example.com", expectedContents, in testSendRequest()