Home
last modified time | relevance | path

Searched refs:finishConnect (Results 1 – 13 of 13) sorted by relevance

/libcore/luni/src/test/java/libcore/java/nio/channels/
DSelectorTest.java48 sc.finishConnect(); in testNonBlockingConnect_immediate()
120 sc.finishConnect(); in test_57456()
161 sc.finishConnect(); in test28318596()
DOldSocketChannelTest.java156 this.channel1.finishConnect(); in testIsConnectionPending()
229 connected = this.channel1.finishConnect(); in tryFinish()
377 public boolean finishConnect() throws IOException { in finishConnect() method in OldSocketChannelTest.MockSocketChannel
DSocketChannelTest.java94 sc.finishConnect(); in test_56684()
268 } while (!sc.finishConnect()); in test_connect_nonBlocking()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DSocketChannelTest.java721 this.channel1.finishConnect(); in testCFII_Norml_NoServer_Block()
844 this.channel1.finishConnect(); in testCFII_ServerStartLater_Block()
866 assertFalse(this.channel1.finishConnect()); in testCFII_ServerStartLater_NonBlock()
886 assertFalse(this.channel1.finishConnect()); in testCFII_FinishTwice_NoServer_NonBlock()
888 assertFalse(this.channel1.finishConnect()); in testCFII_FinishTwice_NoServer_NonBlock()
935 this.channel1.finishConnect(); in testCFII_ConnectAfterFinish_NoServer_Block()
963 assertFalse(this.channel1.finishConnect()); in testCFII_ConnectAfterFinish_NoServer_NonBlock()
1134 assertFalse(this.channel1.finishConnect()); in testCFII_ConnectTwice_NoServer_NonBlock()
1248 this.channel1.finishConnect(); in testCFII_FinishFirst_NoServer_Block()
1263 this.channel1.finishConnect(); in testCFII_FinishFirst_NoServer_Block()
[all …]
DMockSocketChannel.java57 public boolean finishConnect() throws IOException { in finishConnect() method in MockSocketChannel
DUnixSelectorTest.java82 socketChannel.finishConnect(); in testSelectorAcceptAndRead()
DSelectorTest.java411 sc.finishConnect();
447 channel.finishConnect();
520 sc.finishConnect();
/libcore/ojluni/src/main/java/sun/nio/ch/
DUnixAsynchronousSocketChannelImpl.java176 boolean finishConnect = false; in finish()
190 finishConnect = true; in finish()
207 if (finishConnect) { in finish()
208 finishConnect(mayInvokeDirect); in finish()
272 private void finishConnect(boolean mayInvokeDirect) { in finishConnect() method in UnixAsynchronousSocketChannelImpl
DSocketAdaptor.java120 if (result > 0 && sc.finishConnect()) in connect()
DSocketChannelImpl.java736 public boolean finishConnect() throws IOException { in finishConnect() method in SocketChannelImpl
/libcore/ojluni/src/main/java/java/nio/channels/
DSocketChannel.java440 public abstract boolean finishConnect() throws IOException; in finishConnect() method in SocketChannel
/libcore/luni/src/test/java/libcore/java/net/
DConcurrentCloseTest.java88 while (!s.finishConnect()) { in test_connect_nonBlocking()
DSocketTest.java127 while (!out.finishConnect()) { in checkSocketLocalAndRemoteAddresses()