Searched defs:connected (Results 1 - 4 of 4) sorted by relevance

/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
H A DChunkHandler.java41 public abstract void connected(); method in class:ChunkHandler
/libcore/luni/src/main/java/java/nio/
H A DDatagramChannelImpl.java60 // The remote address to be connected.
70 boolean connected = false; field in class:DatagramChannelImpl
135 return connected;
142 // status must be un-connected.
143 if (connected) {
166 // Keep the connected state held by the channel and the socket up to date.
172 * Initialize the state associated with being connected, optionally syncing the socket if there
177 connected = true;
207 connected = false;
344 // status must be open and connected
[all...]
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLEngineTest.java49 assertTrue(connected(a, b));
53 assertFalse(connected(a, b));
56 public boolean connected(SSLEngine a, SSLEngine b) { method in class:SSLEngineTest
/libcore/luni/src/main/java/java/net/
H A DURLConnection.java46 * <p>{@code URLConnection} must be configured before it has connected to the
109 * Specifies whether this {@code URLConnection} is already connected to the
113 protected boolean connected; field in class:URLConnection
178 * URLConnection} is connected to. First, it attempts to get the content
189 if (!connected) {
206 * URLConnection} is connected to. First, it attempts to get the content
223 if (!connected) {
462 if (connected) {
463 throw new IllegalStateException("Already connected");
903 * if this {@code URLConnection} has already been connected
[all...]

Completed in 277 milliseconds