Searched defs:connected (Results 1 - 10 of 10) 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/ojluni/src/main/java/java/io/
H A DPipedInputStream.java32 * A piped input stream should be connected
46 * thread that was providing data bytes to the connected
56 boolean connected = false; field in class:PipedInputStream
84 * next byte of data will be stored when received from the connected
100 * that it is connected to the piped output
114 * connected to the piped output stream
135 * connected}.
137 * java.io.PipedInputStream) connected} to a
146 * {@linkplain #connect(java.io.PipedOutputStream) connected} and
150 * connected} t
[all...]
H A DPipedReader.java41 boolean connected = false; field in class:PipedReader
62 * next character of data will be stored when received from the connected
76 * that it is connected to the piped writer
88 * Creates a <code>PipedReader</code> so that it is connected
108 * connected}. It must be {@linkplain java.io.PipedWriter#connect(
109 * java.io.PipedReader) connected} to a <code>PipedWriter</code>
118 * {@link #connect(java.io.PipedWriter) connected} and uses
121 * java.io.PipedReader) connected} to a <code>PipedWriter</code>
140 * Causes this piped reader to be connected
142 * If this object is already connected t
[all...]
/libcore/ojluni/src/main/java/sun/net/
H A DProgressSource.java53 private boolean connected = false; field in class:ProgressSource
81 public boolean connected() { method in class:ProgressSource
82 if (!connected) {
83 connected = true;
166 if (connected() == false)
/libcore/ojluni/src/main/native/
H A DDatagramChannelImpl.c152 jint len, jboolean connected)
179 if (connected == JNI_FALSE) {
150 Java_sun_nio_ch_DatagramChannelImpl_receive0(JNIEnv *env, jobject this, jobject fdo, jlong address, jint len, jboolean connected) argument
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLEngineTest.java56 assertTrue(connected(a, b));
60 assertFalse(connected(a, b));
63 public boolean connected(SSLEngine a, SSLEngine b) { method in class:SSLEngineTest
/libcore/ojluni/src/main/java/java/net/
H A DAbstractPlainDatagramSocketImpl.java52 boolean connected = false; field in class:AbstractPlainDatagramSocketImpl
117 connected = true;
121 * Disconnects a previously connected socket. Does nothing if the socket was
122 * not connected already.
126 connected = false;
H A DSocket.java62 private boolean connected = false; field in class:Socket
596 throw new SocketException("already connected");
624 connected = true;
688 connected = true;
702 connected = true;
706 * Returns the address to which the socket is connected.
708 * If the socket was connected prior to being {@link #close closed},
709 * then this method will continue to return the connected address
712 * @return the remote IP address to which this socket is connected,
713 * or {@code null} if the socket is not connected
[all...]
H A DURLConnection.java273 protected boolean connected = false; field in class:URLConnection
334 * has already been opened (indicated by the {@code connected}
338 * created, then they are connected. After being created, and
339 * before being connected, various options can be specified
342 * connected, like getContentLength, will implicitly perform the
349 * @see java.net.URLConnection#connected
861 * @throws IllegalStateException if already connected
866 if (connected)
867 throw new IllegalStateException("Already connected");
892 * @throws IllegalStateException if already connected
[all...]
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DDatagramChannelImpl.java1199 boolean connected)
1198 receive0(FileDescriptor fd, long address, int len, boolean connected) argument

Completed in 646 milliseconds