Searched defs:isBound (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/java/net/
H A DServerSocket.java50 private boolean isBound; field in class:ServerSocket
116 * Read the cached isBound and localAddress state from the underlying OS socket.
120 isBound = true;
134 if (!isBound()) {
173 if (!isBound()) {
187 if (!isBound()) {
269 if (!isBound()) {
313 if (isBound()) {
353 if (!isBound()) {
365 public boolean isBound() { method in class:ServerSocket
[all...]
H A DDatagramSocket.java47 boolean isBound = false; field in class:DatagramSocket
160 isBound = true;
200 if (!isBound()) {
445 if (!isBound()) {
447 isBound = true;
485 isBound = true;
495 isBound = true;
568 public boolean isBound() { method in class:DatagramSocket
569 return isBound;
595 if (isClosed() || !isBound()) {
[all...]
H A DSocket.java38 private boolean isBound = false; field in class:Socket
387 if (!isBound()) {
588 isBound = true;
704 if (!isBound()) {
729 public boolean isBound() { method in class:Socket
730 return isBound;
767 if (isBound()) {
791 isBound = true;
807 isBound = true;
872 if (!isBound()) {
[all...]
/libcore/luni/src/main/java/java/nio/
H A DDatagramChannelImpl.java73 boolean isBound = false; field in class:DatagramChannelImpl
109 * Initialise the isBound, localAddress and localPort state from the file descriptor. Used when
124 isBound = true;
162 if (!isBound) {
219 if (!isBound) {
317 if (!isBound) {
531 if (channelImpl.isBound) {
596 boolean wasBound = isBound();
613 boolean wasBound = isBound();
H A DSocketChannelImpl.java86 private volatile boolean isBound = false; field in class:SocketChannelImpl
140 * Initialise the isBound, localAddress and localPort state from the file descriptor. Used when
155 isBound = true;
220 if (!isBound) {
512 if (channel.isBound) {

Completed in 123 milliseconds