HomeSort by relevance Sort by last modified time
    Searched refs:TCP_NODELAY (Results 1 - 25 of 211) sorted by null

1 2 3 4 5 6 7 8 9

  /bionic/tests/headers/posix/
netinet_tcp_h.c 34 MACRO(TCP_NODELAY);
  /external/curl/docs/cmdline-opts/
tcp-nodelay.d 2 Help: Use the TCP_NODELAY option
5 Turn on the TCP_NODELAY option. See the \fIcurl_easy_setopt(3)\fP man page for
  /frameworks/base/core/java/org/apache/http/params/
CoreConnectionPNames.java 65 * performance, they can disable Nagle's algorithm (that is enable TCP_NODELAY).
70 * @see java.net.SocketOptions#TCP_NODELAY
72 public static final String TCP_NODELAY = "http.tcp.nodelay";
HttpConnectionParams.java 95 * (that is enable TCP_NODELAY), <tt>false</tt> otherwise.
102 (CoreConnectionPNames.TCP_NODELAY, true);
109 * performance, they can disable Nagle's algorithm (that is enable TCP_NODELAY).
113 * (that is enable TCP_NODELAY), <tt>false</tt> otherwise.
119 params.setBooleanParameter(CoreConnectionPNames.TCP_NODELAY, value);
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTestCase.java 41 public static final int TCP_NODELAY = 6;
73 case TCP_NODELAY:
147 case TCP_NODELAY:
  /prebuilts/go/darwin-x86/src/net/
tcpsockopt_posix.go 15 err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_NODELAY, boolint(noDelay))
  /prebuilts/go/linux-x86/src/net/
tcpsockopt_posix.go 15 err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_NODELAY, boolint(noDelay))
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
tcp.hpp 90 * Implements the IPPROTO_TCP/TCP_NODELAY socket option.
115 ASIO_OS_DEF(IPPROTO_TCP), ASIO_OS_DEF(TCP_NODELAY)> no_delay;
  /libcore/ojluni/src/main/java/java/net/
SocketImpl.java 381 } else if (name == StandardSocketOptions.TCP_NODELAY) {
382 setOption(SocketOptions.TCP_NODELAY, value);
401 } else if (name == StandardSocketOptions.TCP_NODELAY) {
402 return (T)getOption(SocketOptions.TCP_NODELAY);
SocketOptions.java 64 * s.setOption(TCP_NODELAY, new Boolean(true));
65 * // OK - enables TCP_NODELAY, a binary option
70 * s.setOption(TCP_NODELAY, new Boolean(false));
71 * // OK - disables TCP_NODELAY
99 * Boolean noDelay = (Boolean)(s.getOption(TCP_NODELAY));
101 * // true if TCP_NODELAY is enabled...
142 @Native public final static int TCP_NODELAY = 0x0001;
StandardSocketOptions.java 352 public static final SocketOption<Boolean> TCP_NODELAY =
353 new StdSocketOption<Boolean>("TCP_NODELAY", Boolean.class);
  /external/strace/xlat/
socktcpoptions.h 11 #if defined(TCP_NODELAY) || (defined(HAVE_DECL_TCP_NODELAY) && HAVE_DECL_TCP_NODELAY)
12 XLAT(TCP_NODELAY),
  /device/linaro/bootloader/edk2/StdLib/Include/netinet/
tcp.h 124 #define TCP_NODELAY 1 /* don't delay send to coalesce packets */
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
TcpStream.cpp 79 setsockopt( sock, IPPROTO_TCP, TCP_NODELAY, (const char*)&flag, sizeof(flag) );
  /external/libmicrohttpd/src/microspdy/
io_raw.c 76 ret = setsockopt(session->socket_fd, IPPROTO_TCP, TCP_NODELAY, &val, (socklen_t)sizeof(val));
78 SPDYF_DEBUG("WARNING: Couldn't set the new connection to TCP_NODELAY");
  /external/toybox/toys/other/
nbd_client.c 57 setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, &temp, sizeof(int));
  /frameworks/base/core/java/android/net/
LocalSocketImpl.java 476 case SocketOptions.TCP_NODELAY:
478 OsConstants.TCP_NODELAY);
533 case SocketOptions.TCP_NODELAY:
534 Os.setsockoptInt(fd, OsConstants.IPPROTO_TCP, OsConstants.TCP_NODELAY,
  /libcore/ojluni/src/main/java/sun/nio/ch/
SocketOptionRegistry.java 67 map.put(new RegistryKey(StandardSocketOptions.TCP_NODELAY, Net.UNSPEC), new OptionKey(6, 1));
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/chatserver/
ChatServer.java 135 channel.setOption(StandardSocketOptions.TCP_NODELAY, true);
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/chatserver/
ChatServer.java 135 channel.setOption(StandardSocketOptions.TCP_NODELAY, true);
  /external/oj-libjdwp/src/solaris/transport/socket/
socket_md.c 187 if (cmd == TCP_NODELAY) {
192 if (setsockopt(fd, tcp_level, TCP_NODELAY,
  /bionic/libc/kernel/uapi/linux/
tcp.h 59 #define TCP_NODELAY 1
  /external/iproute2/include/netinet/
tcp.h 40 #define TCP_NODELAY 1 /* Don't delay send to coalesce packets */
  /external/iproute2/include/uapi/linux/
tcp.h 92 #define TCP_NODELAY 1 /* Turn off Nagle's algorithm. */
  /external/kernel-headers/original/uapi/linux/
tcp.h 92 #define TCP_NODELAY 1 /* Turn off Nagle's algorithm. */

Completed in 555 milliseconds

1 2 3 4 5 6 7 8 9