Searched refs:TCP_NODELAY (Results 1 - 25 of 29) sorted by relevance

12

/external/apache-http/src/org/apache/http/params/
H A DCoreConnectionPNames.java60 * 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"; field in interface:CoreConnectionPNames
H A DHttpConnectionParams.java90 * (that is enable TCP_NODELAY), <tt>false</tt> otherwise.
97 (CoreConnectionPNames.TCP_NODELAY, true);
104 * performance, they can disable Nagle's algorithm (that is enable TCP_NODELAY).
108 * (that is enable TCP_NODELAY), <tt>false</tt> otherwise.
114 params.setBooleanParameter(CoreConnectionPNames.TCP_NODELAY, value);
/external/qemu/slirp/
H A Dtcp.h113 #undef TCP_NODELAY macro
114 #define TCP_NODELAY 0x01 /* don't delay send to coalesce packets */ macro
H A Dtcp_subr.c475 setsockopt(s,IPPROTO_TCP,TCP_NODELAY,(char *)&opt,sizeof(int));
/external/qemu/slirp-android/
H A Dtcp.h115 #undef TCP_NODELAY macro
116 #define TCP_NODELAY 0x01 /* don't delay send to coalesce packets */ macro
/external/chromium/net/tools/flip_server/
H A Dacceptor_thread.cc8 #include <netinet/tcp.h> // For TCP_NODELAY
88 rc = setsockopt(server_fd, IPPROTO_TCP, TCP_NODELAY,
H A Dcreate_listener.cc12 #include <netinet/tcp.h> // For TCP_NODELAY
90 rc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY,
94 LOG(FATAL) << "setsockopt() TCP_NODELAY: failed on fd " << fd;
/external/iproute2/include/netinet/
H A Dtcp.h40 #define TCP_NODELAY 1 /* Don't delay send to coalesce packets */ macro
/external/qemu/telephony/
H A Dsysdeps_posix.c603 setsockopt(channel->fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
642 setsockopt( channel->fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on) );
/external/kernel-headers/original/linux/
H A Dtcp.h84 #define TCP_NODELAY 1 /* Turn off Nagle's algorithm. */ macro
/external/openssl/crypto/bio/
H A Db_sock.c949 #if defined(TCP_NODELAY) && (defined(IPPROTO_TCP) || defined(SOL_TCP))
960 ret=setsockopt(s,opt,TCP_NODELAY,(char *)&on,sizeof(on));
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dsocket.rb51 @connection.setsockopt( Socket::SOL_TCP, Socket::TCP_NODELAY, 1 )
/external/dropbear/
H A Ddbutil.c162 setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, (void*)&val, sizeof(val));
/external/openssh/
H A Dmisc.c143 if (getsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen) == -1) {
144 debug("getsockopt TCP_NODELAY: %.100s", strerror(errno));
148 debug2("fd %d is TCP_NODELAY", fd);
152 debug2("fd %d setting TCP_NODELAY", fd);
153 if (setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof opt) == -1)
154 error("setsockopt TCP_NODELAY: %.100s", strerror(errno));
/external/chromium/net/socket/
H A Dtcp_client_socket_libevent.cc46 // After calling this function, the kernel will not wait. See TCP_NODELAY in
50 return setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
H A Dtcp_client_socket_win.cc686 int rv = setsockopt(socket_, IPPROTO_TCP, TCP_NODELAY,
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32socketserver.cc588 *sopt = TCP_NODELAY;
H A Dphysicalsocketserver.cc70 #include <netinet/tcp.h> // for TCP_NODELAY
500 *sopt = TCP_NODELAY;
/external/quake/quake/src/WinQuake/
H A Dmpdosock.h418 #define TCP_NODELAY 0x0001 macro
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3debughandlers.c302 setsockopt(delboy->socket, SOL_SOCKET, TCP_NODELAY, (const void *)&optVal, sizeof(optVal));
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Ddebug.py882 self.connection.setsockopt(socket.SOL_TCP, socket.TCP_NODELAY, 1)
/external/netperf/
H A Dnettest_bsd.c425 -D [L][,R] Set TCP_NODELAY locally and/or remotely (TCP_*)\n\
948 /* Now, we will see about setting the TCP_NODELAY flag on the local */
951 /* If the user tries to enable TCP_NODELAY on a UDP socket, this */
958 planet has a UDP_mumble option that overlaps with TCP_NODELAY,
961 TCP_NODELAY under Linux. So, when asking for -D and
962 "TCP_NODELAY" under Linux, we are actually setting UDP_CORK
969 #if defined(TCP_NODELAY) || defined(SCTP_NODELAY)
973 should probably check against TCP_NODELAY being defined here.
975 TCP_NODELAY _NOT_ being defined is, probably :), epsilon. raj
978 int option = TCP_NODELAY;
[all...]
/external/qemu/
H A Dsockets.c1171 return socket_setoption(fd, IPPROTO_TCP, TCP_NODELAY, 1);
H A Dgdbstub.c2254 setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, (char *)&val, sizeof(val));
/external/strace/
H A Dnet.c1087 { TCP_NODELAY, "TCP_NODELAY" },

Completed in 2189 milliseconds

12