Searched defs:net (Results 226 - 230 of 230) sorted by relevance

12345678910

/libcore/luni/src/main/java/java/net/
H A DURLConnection.java18 package java.net;
70 * javax.net.ssl.HttpsURLConnection HttpsURLConnection} subclasses.
1015 static class DefaultContentHandler extends java.net.ContentHandler {
/libcore/luni/src/test/java/libcore/java/net/
H A DOldSocketTest.java18 package libcore.java.net;
23 import java.net.BindException;
24 import java.net.ConnectException;
25 import java.net.Inet4Address;
26 import java.net.Inet6Address;
27 import java.net.InetAddress;
28 import java.net.InetSocketAddress;
29 import java.net.Proxy;
30 import java.net.ServerSocket;
31 import java.net
[all...]
H A DURLTest.java17 package libcore.java.net;
19 import java.net.Inet6Address;
20 import java.net.InetAddress;
21 import java.net.MalformedURLException;
22 import java.net.URISyntaxException;
23 import java.net.URI;
24 import java.net.URL;
693 URL url = new URL("http://a_b.c.d.net/");
694 assertEquals("a_b.c.d.net", url.getAuthority());
696 assertEquals("a_b.c.d.net", ur
[all...]
H A DURLConnectionTest.java17 package libcore.java.net;
31 import java.net.Authenticator;
32 import java.net.CacheRequest;
33 import java.net.CacheResponse;
34 import java.net.ConnectException;
35 import java.net.HttpRetryException;
36 import java.net.HttpURLConnection;
37 import java.net.InetAddress;
38 import java.net.PasswordAuthentication;
39 import java.net
[all...]
/libcore/luni/src/test/java/tests/api/javax/net/ssl/
H A DSSLEngineTest.java18 package tests.api.javax.net.ssl;
32 import javax.net.ssl.SSLContext;
33 import javax.net.ssl.SSLEngine;
34 import javax.net.ssl.SSLEngineResult;
35 import javax.net.ssl.SSLException;
36 import javax.net.ssl.SSLEngineResult.HandshakeStatus;
126 e = getEngine("www.fortify.net", 80);
127 assertEquals("Incorrect host name", "www.fortify.net", e.getPeerHost());
138 e = getEngine("www.fortify.net", 80);
144 * javax.net
[all...]

Completed in 86 milliseconds

12345678910