Searched defs:HttpURLConnection (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
H A DHttpURLConnection.java41 * <li>Obtain a new {@code HttpURLConnection} by calling {@link
43 * {@code HttpURLConnection}.
57 * HttpURLConnection} should be closed by calling {@link #disconnect()}.
65 * HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
88 * {@code HttpURLConnection} will follow up to five HTTP redirects. It will
104 * HttpURLConnection} will be forced to buffer the complete request body in
109 * HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
144 * <p>By default, this implementation of {@code HttpURLConnection} request
276 abstract public class HttpURLConnection extends URLConnection { class in inherits:URLConnection
528 protected HttpURLConnection (URL u) { method in class:HttpURLConnection
[all...]
/libcore/ojluni/src/main/java/sun/net/www/protocol/http/
H A DHttpURLConnection.java84 public class HttpURLConnection extends java.net.HttpURLConnection { class in inherits:java.net.HttpURLConnection
374 PlatformLogger.getLogger("sun.net.www.protocol.http.HttpURLConnection");
710 protected HttpURLConnection(URL u, Handler handler) method in class:HttpURLConnection
717 public HttpURLConnection(URL u, String host, int port) { method in class:HttpURLConnection
723 public HttpURLConnection(URL u, Proxy p) { method in class:HttpURLConnection
727 protected HttpURLConnection(URL u, Proxy p, Handler handler) { method in class:HttpURLConnection
773 if (c instanceof HttpURLConnection) {
774 ((HttpURLConnection) c).setInstanceFollowRedirects(false);
783 if (c instanceof HttpURLConnection) {
[all...]

Completed in 250 milliseconds