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

1 2 3 4 5 6 7 8 9

  /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 */
  /development/ndk/platforms/android-9/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
tcp.h 85 #define TCP_NODELAY 1 /* Turn off Nagle's algorithm. */
  /prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-12/arch-mips/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-12/arch-x86/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-13/arch-arm/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-13/arch-mips/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-13/arch-x86/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-14/arch-arm/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-14/arch-mips/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-14/arch-x86/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-15/arch-arm/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-15/arch-mips/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-15/arch-x86/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-16/arch-arm/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-16/arch-mips/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-16/arch-x86/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-17/arch-arm/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-17/arch-mips/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /prebuilts/ndk/r10/platforms/android-17/arch-x86/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1

Completed in 869 milliseconds

1 2 3 4 5 6 7 8 9