Searched refs:TCP_NODELAY (Results 1 – 7 of 7) sorted by relevance
/libcore/luni/src/test/java/libcore/java/net/ |
D | OldSocketTestCase.java | 36 public static final int TCP_NODELAY = 6; field in OldSocketTestCase 68 case TCP_NODELAY: in getOptionIsSupported() 142 case TCP_NODELAY: in getSocketOptionString()
|
D | OldSocketTest.java | 417 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/ |
D | SocketOptions.java | 75 public static final int TCP_NODELAY = 1; field
|
D | Socket.java | 468 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/ |
D | IoBridge.java | 298 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/ |
D | OsConstants.java | 491 public static final int TCP_NODELAY = placeholder(); field in OsConstants
|
/libcore/luni/src/main/native/ |
D | android_system_OsConstants.cpp | 552 initConstant(env, c, "TCP_NODELAY", TCP_NODELAY); in OsConstants_initConstants()
|