HomeSort by relevance Sort by last modified time
    Searched defs:openConnection (Results 1 - 25 of 27) sorted by null

1 2

  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/test_protocol/
Handler.java 26 protected URLConnection openConnection(URL u) throws IOException {
  /external/apache-http/src/org/apache/http/conn/
ClientConnectionOperator.java 87 void openConnection(OperatedClientConnection conn,
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/ftp/
Handler.java 33 protected URLConnection openConnection(URL u) throws IOException {
57 protected URLConnection openConnection(URL u, Proxy proxy)
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
Handler.java 46 protected URLConnection openConnection(URL u) throws IOException {
70 protected URLConnection openConnection(URL u, Proxy proxy)
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/https/
Handler.java 34 protected URLConnection openConnection(URL url) throws IOException {
39 protected URLConnection openConnection(URL url, Proxy proxy)
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
URLStreamHandlerFactoryTest.java 47 url.openConnection();
127 protected URLConnection openConnection(URL u) throws IOException {
URLStreamHandlerTest.java 122 method = "openConnection",
127 assertNull(handler.openConnection(null));
133 method = "openConnection",
138 handler.openConnection(null, null);
265 protected URLConnection openConnection(URL arg0) throws IOException {
290 public URLConnection openConnection(URL u, Proxy p) throws IOException {
291 return super.openConnection(u, p);
ExcludedProxyTest.java 72 URLConnection conn1 = u1.openConnection();
80 URLConnection conn3 = u3.openConnection();
93 .openConnection();
115 .openConnection();
185 * @tests java.net.URL#openConnection(Proxy)
208 .openConnection(proxyList[i]);
237 urlList[i].openConnection(null);
243 fileUrl.openConnection(Proxy.NO_PROXY);
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/
Handler.java 44 public URLConnection openConnection(URL url) throws IOException {
45 return openConnection(url, null);
49 * The behaviour of this method is the same as openConnection(URL).
66 public URLConnection openConnection(URL url, Proxy proxy)
81 return (proxy == null) ? ftpURL.openConnection() : ftpURL
82 .openConnection(proxy);
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/jar/
Handler.java 44 protected URLConnection openConnection(URL u) throws IOException {
  /frameworks/base/core/java/android/net/http/
HttpConnection.java 49 AndroidHttpClientConnection openConnection(Request req) throws IOException {
Connection.java 358 mHttpClientConnection = openConnection(req);
507 abstract AndroidHttpClientConnection openConnection(Request req) throws IOException;
HttpsConnection.java 162 AndroidHttpClientConnection openConnection(Request req) throws IOException {
343 HttpLog.v("HttpsConnection.openConnection():" +
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/
URLConnectionTest.java 248 protected URLConnection openConnection(URL u) throws IOException {
366 return url.openConnection().getContentType();
389 uc = url.openConnection();
391 uc2 = url2.openConnection();
394 fileURLCon = fileURL.openConnection();
465 new URL("http://localhost:" + port + path).openConnection();
524 URLConnection uc2 = serverURL.openConnection();
613 URLConnection fakeCon = url.openConnection();
709 URLConnection con = url.openConnection();
886 uc2 = url2.openConnection();
    [all...]
URLTest.java 480 * Test method for {@link java.net.URL#openConnection()}.
485 method = "openConnection",
496 u.openConnection();
507 URLConnection conn = u.openConnection();
517 URLConnection conn = u.openConnection();
588 * Test method for {@link java.net.URL#openConnection(java.net.Proxy)}.
593 method = "openConnection",
617 .openConnection(proxy1);
659 urlList[i].openConnection(null);
665 fileUrl.openConnection(Proxy.NO_PROXY)
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
AbstractPoolEntry.java 164 connOperator.openConnection
DefaultClientConnectionOperator.java 99 public void openConnection(OperatedClientConnection conn,
186 } // openConnection
  /dalvik/libcore/luni/src/main/java/java/net/
URLStreamHandler.java 42 protected abstract URLConnection openConnection(URL u) throws IOException;
62 protected URLConnection openConnection(URL u, Proxy proxy)
URL.java 621 return openConnection().getContent();
642 return openConnection().getContent(types);
653 return openConnection().getInputStream();
664 public URLConnection openConnection() throws IOException {
665 return strmHandler.openConnection(this);
699 public URLConnection openConnection(Proxy proxy) throws IOException {
713 return strmHandler.openConnection(this, proxy);
    [all...]
  /cts/tests/src/android/webkit/cts/
CtsTestServer.java 172 URLConnection connection = openConnection(url);
197 private URLConnection openConnection(URL url)
204 HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
214 return url.openConnection();
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
  /prebuilt/common/osgi/
osgi.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 656 milliseconds

1 2