Searched refs:TCPConnection (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DTCPConnection.java38 public class TCPConnection implements Connection { class in inherits:Connection
52 TCPConnection(TCPChannel ch, Socket s, InputStream in, OutputStream out) method in class:TCPConnection
64 TCPConnection(TCPChannel ch, InputStream in, OutputStream out) method in class:TCPConnection
73 TCPConnection(TCPChannel ch, Socket s) method in class:TCPConnection
H A DTCPChannel.java66 private final List<TCPConnection> freeList =
164 TCPConnection conn;
217 conn = new TCPConnection(this, sock);
334 TCPConnection tcpConnection = (TCPConnection) conn;
443 ListIterator<TCPConnection> iter = freeList.listIterator(size);
446 TCPConnection conn = iter.previous();
H A DConnectionMultiplexer.java162 conn = new TCPConnection(channel, info.in, info.out);
259 public synchronized TCPConnection openConnection() throws IOException
306 return new TCPConnection(channel, info.in, info.out);
H A DTCPTransport.java759 TCPConnection conn;
772 conn = new TCPConnection(ch, socket, bufIn, bufOut);
808 conn = new TCPConnection(ch, socket, bufIn, bufOut);

Completed in 42 milliseconds