Searched defs:connected (Results 1 - 11 of 11) 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.java35 * A piped input stream should be connected
49 * thread that was providing data bytes to the connected
59 boolean connected = false; field in class:PipedInputStream
87 * next byte of data will be stored when received from the connected
103 * that it is connected to the piped output
117 * connected to the piped output stream
138 * connected}.
140 * java.io.PipedInputStream) connected} to a
149 * {@linkplain #connect(java.io.PipedOutputStream) connected} and
153 * connected} t
[all...]
H A DPipedReader.java44 boolean connected = false; field in class:PipedReader
65 * next character of data will be stored when received from the connected
79 * that it is connected to the piped writer
91 * Creates a <code>PipedReader</code> so that it is connected
111 * connected}. It must be {@linkplain java.io.PipedWriter#connect(
112 * java.io.PipedReader) connected} to a <code>PipedWriter</code>
121 * {@link #connect(java.io.PipedWriter) connected} and uses
124 * java.io.PipedReader) connected} to a <code>PipedWriter</code>
143 * Causes this piped reader to be connected
145 * 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.c134 jint len, jboolean connected)
161 if (connected == JNI_FALSE) {
132 Java_sun_nio_ch_DatagramChannelImpl_receive0(JNIEnv *env, jobject this, jobject fdo, jlong address, jint len, jboolean connected) argument
H A DPlainDatagramSocketImpl.c160 pdsi_connected = (*env)->GetFieldID(env, cls, "connected", "Z");
233 /* Now that we're a connected socket, let's extract the port number
377 jboolean connected; local
397 connected = (*env)->GetBooleanField(env, this, pdsi_connected);
409 if (connected) {
463 * If we are connected it's possible that sendto will return
781 jboolean connected = JNI_FALSE; local
873 * Security Note: For Linux 2.2 with connected datagrams ensure that
910 * If we are connected then we know that the datagram that we have
911 * received is from the address that we are connected to
[all...]
/libcore/luni/src/test/java/libcore/javax/net/ssl/
H A DSSLEngineTest.java54 assertTrue(connected(a, b));
58 assertFalse(connected(a, b));
61 public boolean connected(SSLEngine a, SSLEngine b) { method in class:SSLEngineTest
/libcore/ojluni/src/main/java/java/net/
H A DAbstractPlainDatagramSocketImpl.java51 boolean connected = false; field in class:AbstractPlainDatagramSocketImpl
121 connected = true;
125 * Disconnects a previously connected socket. Does nothing if the socket was
126 * not connected already.
130 connected = false;
H A DSocket.java63 private boolean connected = false; field in class:Socket
566 throw new SocketException("already connected");
594 connected = true;
651 connected = true;
665 connected = true;
669 * Returns the address to which the socket is connected.
671 * If the socket was connected prior to being {@link #close closed},
672 * then this method will continue to return the connected address
675 * @return the remote IP address to which this socket is connected,
676 * or <code>null</code> if the socket is not connected
[all...]
H A DURLConnection.java282 protected boolean connected = false; field in class:URLConnection
344 * has already been opened (indicated by the <code>connected</code>
348 * created, then they are connected. After being created, and
349 * before being connected, various options can be specified
352 * connected, like getContentLength, will implicitly perform the
359 * @see java.net.URLConnection#connected
862 * @throws IllegalStateException if already connected
867 if (connected)
868 throw new IllegalStateException("Already connected");
893 * @throws IllegalStateException if already connected
[all...]
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DDatagramChannelImpl.java901 boolean connected)
900 receive0(FileDescriptor fd, long address, int len, boolean connected) argument

Completed in 994 milliseconds