Home
last modified time | relevance | path

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

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