HomeSort by relevance Sort by last modified time
    Searched full:nodelay (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/src/net/
tcpsockopt_posix.go 14 func setNoDelay(fd *netFD, noDelay bool) error {
19 return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_NODELAY, boolint(noDelay)))
tcpsockopt_stub.go 14 func setNoDelay(fd *netFD, noDelay bool) error {
tcpsock_posix.go 145 func (c *TCPConn) SetNoDelay(noDelay bool) error {
149 if err := setNoDelay(c.fd, noDelay); err != nil {
tcpsock_plan9.go 102 func (c *TCPConn) SetNoDelay(noDelay bool) error {
  /prebuilts/go/linux-x86/src/net/
tcpsockopt_posix.go 14 func setNoDelay(fd *netFD, noDelay bool) error {
19 return os.NewSyscallError("setsockopt", syscall.SetsockoptInt(fd.sysfd, syscall.IPPROTO_TCP, syscall.TCP_NODELAY, boolint(noDelay)))
tcpsockopt_stub.go 14 func setNoDelay(fd *netFD, noDelay bool) error {
tcpsock_posix.go 145 func (c *TCPConn) SetNoDelay(noDelay bool) error {
149 if err := setNoDelay(c.fd, noDelay); err != nil {
tcpsock_plan9.go 102 func (c *TCPConn) SetNoDelay(noDelay bool) error {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
delay.d 8 # immediatly following insn. See also nodelay.d.
nodelay.d 2 #name: MIPS nodelay
  /toolchain/binutils/binutils-2.25/gas/config/
tc-or1k.c 86 static bfd_boolean nodelay = FALSE; variable
90 nodelay = TRUE;
102 { "nodelay", s_nodelay, 0 },
351 if (nodelay)
  /prebuilts/misc/windows/sdl2/test/
testoverlay2.c 217 SDL_Log(" -nodelay\n");
243 int nodelay = 0; local
277 } else if (strcmp(argv[1], "-nodelay") == 0) {
278 nodelay = 1;
381 if (nodelay) {
  /external/curl/docs/libcurl/opts/
CURLOPT_TCP_NODELAY.3 29 CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TCP_NODELAY, long nodelay);
  /external/fio/engines/
net.c 44 unsigned int nodelay; member in struct:netio_options
136 .name = "nodelay",
138 .off1 = offsetof(struct netio_options, nodelay),
745 if (o->nodelay && is_tcp(o)) {
749 log_err("fio: cannot set TCP_NODELAY option on socket (%s), disable with 'nodelay=0'\n", strerror(errno));
860 if (o->nodelay && is_tcp(o)) {
864 log_err("fio: cannot set TCP_NODELAY option on socket (%s), disable with 'nodelay=0'\n", strerror(errno));
  /frameworks/base/core/java/org/apache/http/params/
CoreConnectionPNames.java 72 public static final String TCP_NODELAY = "http.tcp.nodelay";
  /external/toybox/kconfig/lxdialog/
util.c 495 nodelay(win, TRUE);
502 nodelay(win, FALSE);
  /libcore/ojluni/src/main/java/java/net/
SocketOptions.java 97 * Boolean noDelay = (Boolean)(s.getOption(TCP_NODELAY));
98 * if (noDelay.booleanValue()) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
cursesw.h 572 #ifdef nodelay
573 inline void UNDEF(nodelay)() { nodelay(); } function
574 #undef nodelay macro
575 #define nodelay UNDEF(nodelay) macro
1289 int nodelay(bool bf) { return ::nodelay(w, bf); } function in class:NCursesWindow
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
cursesw.h 572 #ifdef nodelay
573 inline void UNDEF(nodelay)() { nodelay(); } function
574 #undef nodelay macro
575 #define nodelay UNDEF(nodelay) macro
1289 int nodelay(bool bf) { return ::nodelay(w, bf); } function in class:NCursesWindow
    [all...]
  /external/libmicrohttpd/src/spdy2http/
proxy.c 69 bool nodelay; member in struct:global_options
1010 if(glob_opt.nodelay)
    [all...]
  /external/webrtc/talk/media/sctp/
sctpdataengine.cc 449 uint32_t nodelay = 1; local
450 if (usrsctp_setsockopt(sock_, IPPROTO_SCTP, SCTP_NODELAY, &nodelay,
451 sizeof(nodelay))) {
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventSocketProxy.cs 100 socket.NoDelay = true;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventSocketProxy.cs 107 socket.NoDelay = true;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_curses.py 112 stdscr.nodelay(1)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_curses.py 112 stdscr.nodelay(1)

Completed in 413 milliseconds

1 2 3 4