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

/dalvik/libcore/luni/src/main/java/java/net/
H A DSocketOptions.java56 public static final int TCP_NODELAY = 1; field in interface:SocketOptions
H A DSocket.java68 static final int TCP_NODELAY = 4; field in class:Socket
587 * Gets the setting of the socket option {@code SocketOptions.TCP_NODELAY}.
589 * @return {@code true} if the {@code SocketOptions.TCP_NODELAY} is enabled,
593 * @see SocketOptions#TCP_NODELAY
597 return ((Boolean) impl.getOption(SocketOptions.TCP_NODELAY))
734 * Sets the state of the {@code SocketOptions.TCP_NODELAY} for this socket.
740 * @see SocketOptions#TCP_NODELAY
744 impl.setOption(SocketOptions.TCP_NODELAY, Boolean.valueOf(on));
/dalvik/libcore/luni/src/test/java/tests/api/java/net/
H A DSocketTestCase.java37 public static final int TCP_NODELAY = 6; field in class:SocketTestCase
78 case TCP_NODELAY:
154 case TCP_NODELAY:
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/net/
H A DPlainDatagramSocketImpl.java51 static final int TCP_NODELAY = 4; field in class:PlainDatagramSocketImpl
H A DPlainSocketImpl.java54 static final int TCP_NODELAY = 4; field in class:PlainSocketImpl
295 if (optID == SocketOptions.TCP_NODELAY
296 && (netImpl.getSocketFlags() & TCP_NODELAY) != 0) {
328 if (optID == SocketOptions.TCP_NODELAY
329 && (netImpl.getSocketFlags() & TCP_NODELAY) != 0) {

Completed in 1204 milliseconds