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

  /external/apache-http/src/org/apache/http/params/
CoreConnectionPNames.java 60 * performance, they can disable Nagle's algorithm (that is enable TCP_NODELAY).
65 * @see java.net.SocketOptions#TCP_NODELAY
67 public static final String TCP_NODELAY = "http.tcp.nodelay";
  /dalvik/libcore/luni/src/main/java/java/net/
SocketOptions.java 56 public static final int TCP_NODELAY = 1;
Socket.java 68 static final int TCP_NODELAY = 4;
587 * Gets the setting of the socket option {@code SocketOptions.TCP_NODELAY}.
589 * @return {@code true} if the {@code SocketOptions.TCP_NODELAY} is enabled,
593 * @see SocketOptions#TCP_NODELAY
597 return ((Boolean) impl.getOption(SocketOptions.TCP_NODELAY))
734 * Sets the state of the {@code SocketOptions.TCP_NODELAY} for this socket.
740 * @see SocketOptions#TCP_NODELAY
744 impl.setOption(SocketOptions.TCP_NODELAY, Boolean.valueOf(on));
    [all...]
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/net/
PlainSocketImpl.java 54 static final int TCP_NODELAY = 4;
295 if (optID == SocketOptions.TCP_NODELAY
296 && (netImpl.getSocketFlags() & TCP_NODELAY) != 0) {
328 if (optID == SocketOptions.TCP_NODELAY
329 && (netImpl.getSocketFlags() & TCP_NODELAY) != 0) {
PlainDatagramSocketImpl.java 51 static final int TCP_NODELAY = 4;
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
SocketTestCase.java 37 public static final int TCP_NODELAY = 6;
78 case TCP_NODELAY:
154 case TCP_NODELAY:
  /external/qemu/slirp/
tcp.h 113 #undef TCP_NODELAY
114 #define TCP_NODELAY 0x01 /* don't delay send to coalesce packets */
  /external/qemu/slirp-android/
tcp.h 115 #undef TCP_NODELAY
116 #define TCP_NODELAY 0x01 /* don't delay send to coalesce packets */
  /bionic/libc/kernel/common/linux/
tcp.h 73 #define TCP_NODELAY 1
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
tcp.h 73 #define TCP_NODELAY 1
  /external/iproute2/include/netinet/
tcp.h 40 #define TCP_NODELAY 1 /* Don't delay send to coalesce packets */
  /external/kernel-headers/original/linux/
tcp.h 84 #define TCP_NODELAY 1 /* Turn off Nagle's algorithm. */
  /external/quake/quake/src/WinQuake/
mpdosock.h 418 #define TCP_NODELAY 0x0001
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 417 milliseconds