Home
last modified time | relevance | path

Searched refs:TCP_NODELAY (Results 1 – 7 of 7) sorted by relevance

/libcore/luni/src/test/java/libcore/java/net/
DOldSocketTestCase.java36 public static final int TCP_NODELAY = 6; field in OldSocketTestCase
68 case TCP_NODELAY: in getOptionIsSupported()
142 case TCP_NODELAY: in getSocketOptionString()
DOldSocketTest.java417 ensureExceptionThrownIfOptionIsUnsupportedOnOS(TCP_NODELAY); in test_getTcpNoDelay()
419 handleException(e, TCP_NODELAY); in test_getTcpNoDelay()
564 ensureExceptionThrownIfOptionIsUnsupportedOnOS(TCP_NODELAY); in test_setTcpNoDelayZ()
566 handleException(e, TCP_NODELAY); in test_setTcpNoDelayZ()
/libcore/luni/src/main/java/java/net/
DSocketOptions.java75 public static final int TCP_NODELAY = 1; field
DSocket.java468 return (Boolean) impl.getOption(SocketOptions.TCP_NODELAY); in getTcpNoDelay()
555 impl.setOption(SocketOptions.TCP_NODELAY, Boolean.valueOf(on)); in setTcpNoDelay()
/libcore/luni/src/main/java/libcore/io/
DIoBridge.java298 case SocketOptions.TCP_NODELAY: in getSocketOptionErrno()
299 return booleanFromInt(Libcore.os.getsockoptInt(fd, IPPROTO_TCP, TCP_NODELAY)); in getSocketOptionErrno()
382 case SocketOptions.TCP_NODELAY: in setSocketOptionErrno()
383 Libcore.os.setsockoptInt(fd, IPPROTO_TCP, TCP_NODELAY, booleanToInt((Boolean) value)); in setSocketOptionErrno()
/libcore/luni/src/main/java/android/system/
DOsConstants.java491 public static final int TCP_NODELAY = placeholder(); field in OsConstants
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp552 initConstant(env, c, "TCP_NODELAY", TCP_NODELAY); in OsConstants_initConstants()