Searched refs:isBound (Results 1 - 12 of 12) sorted by relevance

/libcore/luni/src/main/java/java/net/
H A DServerSocket.java47 private boolean isBound; field in class:ServerSocket
101 isBound = true;
121 if (!isBound()) {
160 if (!isBound()) {
173 if (!isBound()) {
255 if (!isBound()) {
299 if (isBound()) {
319 isBound = true;
335 if (!isBound()) {
347 public boolean isBound() { method in class:ServerSocket
[all...]
H A DDatagramSocket.java45 boolean isBound = false; field in class:DatagramSocket
134 isBound = true;
163 if (!isBound()) {
179 if (!isBound()) {
424 if (!isBound()) {
426 isBound = true;
461 isBound = true;
520 public boolean isBound() { method in class:DatagramSocket
521 return isBound;
546 if (!isBound()) {
[all...]
H A DSocket.java37 private boolean isBound = false; field in class:Socket
366 if (!isBound()) {
565 isBound = true;
679 if (!isBound()) {
704 public boolean isBound() { method in class:Socket
705 return isBound;
742 if (isBound()) {
763 isBound = true;
832 if (!isBound()) {
840 isBound
[all...]
H A DMulticastSocket.java332 isBound = true;
/libcore/luni/src/main/java/java/nio/
H A DServerSocketChannelImpl.java44 private boolean isBound = false; field in class:ServerSocketChannelImpl
62 if (!isBound) {
116 channelImpl.isBound = true;
120 if (!channelImpl.isBound) {
153 @Override public boolean isBound() { method in class:ServerSocketChannelImpl.ServerSocketAdapter
154 return channelImpl.isBound;
159 channelImpl.isBound = true;
H A DSocketChannelImpl.java83 private volatile boolean isBound = false; field in class:SocketChannelImpl
149 isBound = flag;
178 isBound = finished;
247 isBound = finished;
260 isBound = finished;
440 return isBound ? localAddress : Inet4Address.ANY;
495 public boolean isBound() { method in class:SocketChannelImpl.SocketAdapter
496 return channel.isBound;
525 channel.isBound = super.isBound();
[all...]
H A DDatagramChannelImpl.java65 boolean isBound = false; field in class:DatagramChannelImpl
141 isBound = true;
171 if (!isBound) {
490 * @see java.net.DatagramSocket#isBound()
493 public boolean isBound() { method in class:DatagramChannelImpl.DatagramSocketAdapter
494 return channelImpl.isBound;
544 channelImpl.isBound = true;
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DOpenSSLSocketImplWrapper.java180 public boolean isBound() { method in class:OpenSSLSocketImplWrapper
181 return socket.isBound();
H A DSSLSocketWrapper.java200 public boolean isBound() { method in class:SSLSocketWrapper
201 return socket.isBound();
/libcore/luni/src/test/java/libcore/java/net/
H A DOldSocketTest.java63 assertFalse("new socket should not be bound", s.isBound());
734 theSocket.isBound());
742 .isBound());
747 theSocket.isBound());
754 .isBound());
757 theSocket.isBound());
760 theSocket.isBound());
1009 .isBound());
1288 .isBound());
H A DOldDatagramSocketTest.java1649 theSocket.isBound());
1654 theSocket.isBound());
1659 theSocket.isBound());
1666 theSocket.isBound());
1674 theSocket.isBound());
1677 theSocket.isBound());
1680 theSocket.isBound());
1682 fail("Got exception during isBound tests" + e.toString());
H A DOldServerSocketTest.java71 .isBound());

Completed in 120 milliseconds