Home
last modified time | relevance | path

Searched refs:createConnection (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/util/net/
DHttpHelper.java159 public HttpURLConnection createConnection(URL url, String method, String contentType) in createConnection() method in HttpHelper
180 return createConnection(url, method, "text/xml"); in createXmlConnection()
188 return createConnection(url, method, "application/json"); in createJsonConnection()
365 HttpURLConnection conn = createConnection(new URL(getUrl()), "POST", mContentType); in run()
420 HttpURLConnection conn = createConnection(url, "GET", null); in getRemoteUrlStream()
435 conn = createConnection(newURL, "GET", null); in getRemoteUrlStream()
DIHttpHelper.java172 public HttpURLConnection createConnection(URL url, String method, String contentType) in createConnection() method
/tools/tradefederation/core/tests/src/com/android/tradefed/util/net/
DHttpHelperTest.java265 public HttpURLConnection createConnection(URL url, String method, String contentType) in testDoPostWithRetry_ioexception()
289 public HttpURLConnection createConnection(URL url, String method, String contentType) in testDoPostWithRetry_retry()
295 return super.createConnection(url, method, contentType); in testDoPostWithRetry_retry()
349 public HttpURLConnection createConnection(URL url, String method, String contentType) in createConnection() method in HttpHelperTest.TestHttpHelper