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

1 2 3 4 5 6

  /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";
  /libcore/ojluni/src/main/java/java/net/
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);
  /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:
  /device/linaro/bootloader/edk2/StdLib/Include/netinet/
tcp.h 124 #define TCP_NODELAY 1 /* don't delay send to coalesce packets */
  /external/iproute2/include/netinet/
tcp.h 40 #define TCP_NODELAY 1 /* Don't delay send to coalesce packets */
  /external/syslinux/core/lwip/src/include/lwip/
sockets.h 147 #define TCP_NODELAY 0x01 /* don't delay send to coalesce packets */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
tcp.h 91 #define TCP_NODELAY 1 /* Turn off Nagle's algorithm. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/netinet/
tcp.h 40 #define TCP_NODELAY 1 /* Don't delay send to coalesce packets */
  /prebuilts/go/darwin-x86/src/syscall/
net_nacl.go 152 TCP_NODELAY
types_windows.go 574 TCP_NODELAY = 1
zerrors_darwin_386.go     [all...]
zerrors_darwin_amd64.go     [all...]
zerrors_darwin_arm.go     [all...]
zerrors_darwin_arm64.go     [all...]
  /prebuilts/go/linux-x86/src/syscall/
net_nacl.go 152 TCP_NODELAY
types_windows.go 574 TCP_NODELAY = 1
  /bionic/libc/kernel/uapi/linux/
tcp.h 59 #define TCP_NODELAY 1
  /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. */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_ws1_undef.h 156 #undef TCP_NODELAY
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winsock.h 197 #define TCP_NODELAY 0x0001
winsock2.h 215 #define TCP_NODELAY 0x0001
    [all...]
  /external/python/cpython2/Lib/plat-atheos/
IN.py 797 TCP_NODELAY = 0x01
  /libcore/luni/src/main/java/android/system/
OsConstants.java 527 public static final int TCP_NODELAY = placeholder();
    [all...]

Completed in 692 milliseconds

1 2 3 4 5 6