HomeSort by relevance Sort by last modified time
    Searched refs:keepalive (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/curl/docs/cmdline-opts/
no-keepalive.d 1 Long: no-keepalive
2 Help: Disable TCP keepalive on the connection
4 Disables the use of keepalive messages on the TCP connection. curl otherwise
8 --keepalive to enforce keepalive.
keepalive-time.d 1 Long: keepalive-time
3 Help: Interval time for keepalive probes
7 keepalive probes and the time between individual keepalive probes. It is
10 option has no effect if --no-keepalive is used.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/
mutation_inside_cyclegc.py 22 keepalive = [] variable
28 keepalive.append(weakref.ref(a, callback))
31 keepalive.append(lst[:])
  /external/python/cpython2/Lib/test/crashers/
mutation_inside_cyclegc.py 22 keepalive = [] variable
28 keepalive.append(weakref.ref(a, callback))
31 keepalive.append(lst[:])
  /external/python/cpython3/Lib/test/crashers/
mutation_inside_cyclegc.py 22 keepalive = [] variable
28 keepalive.append(weakref.ref(a, callback))
31 keepalive.append(lst[:])
  /prebuilts/go/darwin-x86/src/net/
sockopt_plan9.go 9 func setKeepAlive(fd *netFD, keepalive bool) error {
10 if keepalive {
11 _, e := fd.ctl.WriteAt([]byte("keepalive"), 0)
tcpsockopt_openbsd.go 13 // OpenBSD has no user-settable per-socket TCP keepalive
tcpsockopt_plan9.go 20 cmd := "keepalive " + itoa(int(d/time.Millisecond))
sockopt_stub.go 31 func setKeepAlive(fd *netFD, keepalive bool) error {
sockopt_posix.go 105 runtime.KeepAlive(fd)
111 runtime.KeepAlive(fd)
115 func setKeepAlive(fd *netFD, keepalive bool) error {
116 err := fd.pfd.SetsockoptInt(syscall.SOL_SOCKET, syscall.SO_KEEPALIVE, boolint(keepalive))
117 runtime.KeepAlive(fd)
131 runtime.KeepAlive(fd)
tcpsock.go 157 // keepalive messages on the connection.
158 func (c *TCPConn) SetKeepAlive(keepalive bool) error {
162 if err := setKeepAlive(c.fd, keepalive); err != nil {
  /prebuilts/go/linux-x86/src/net/
sockopt_plan9.go 9 func setKeepAlive(fd *netFD, keepalive bool) error {
10 if keepalive {
11 _, e := fd.ctl.WriteAt([]byte("keepalive"), 0)
tcpsockopt_openbsd.go 13 // OpenBSD has no user-settable per-socket TCP keepalive
tcpsockopt_plan9.go 20 cmd := "keepalive " + itoa(int(d/time.Millisecond))
sockopt_stub.go 31 func setKeepAlive(fd *netFD, keepalive bool) error {
sockopt_posix.go 105 runtime.KeepAlive(fd)
111 runtime.KeepAlive(fd)
115 func setKeepAlive(fd *netFD, keepalive bool) error {
116 err := fd.pfd.SetsockoptInt(syscall.SOL_SOCKET, syscall.SO_KEEPALIVE, boolint(keepalive))
117 runtime.KeepAlive(fd)
131 runtime.KeepAlive(fd)
tcpsock.go 157 // keepalive messages on the connection.
158 func (c *TCPConn) SetKeepAlive(keepalive bool) error {
162 if err := setKeepAlive(c.fd, keepalive); err != nil {
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyFactory2Test.java 50 static class KeepAlive extends Thread {
53 public KeepAlive(int sleepTime, int iterations) {
72 private KeepAlive createKeepAlive(String alg) {
75 KeepAlive keepalive = new KeepAlive(240000, 8); local
76 synchronized (keepalive) {
77 keepalive.start();
79 keepalive.wait();
84 return keepalive;
116 KeepAlive keepalive = createKeepAlive(keyfactAlgs[i]); local
146 KeepAlive keepalive = createKeepAlive(keyfactAlgs[i]); local
238 KeepAlive keepalive = createKeepAlive(keyfactAlgs[i]); local
295 KeepAlive keepalive = createKeepAlive(keyfactAlgs[i]); local
    [all...]
  /external/apache-http/src/org/apache/http/impl/
DefaultConnectionReuseStrategy.java 83 public boolean keepAlive(final HttpResponse response,
149 boolean keepalive = false;
156 keepalive = true;
159 if (keepalive)
  /hardware/interfaces/radio/1.1/
IRadio.hal 94 * Start a Keepalive session (for IPsec)
97 * @param keepalive A request structure containing all necessary info to describe a keepalive
101 oneway startKeepalive(int32_t serial, KeepaliveRequest keepalive);
104 * Stop an ongoing Keepalive session (for IPsec)
  /external/libnl/lib/idiag/
idiag.c 131 __ADD(IDIAG_TIMER_KEEPALIVE, keepalive)
  /system/core/adb/
sysdeps_win32.cpp 1118 tcp_keepalive keepalive; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageChannel.java 390 DatagramPacket keepalive = new DatagramPacket(retval,0,retval.length,packet.getAddress(),packet.getPort()); local
391 ((UDPMessageProcessor)this.messageProcessor).sock.send(keepalive);
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/httputil/
persist.go 295 // has been closed in an HTTP keepalive sense. If req.Close equals true, the
296 // keepalive connection is logically closed after this request and the opposing
  /prebuilts/go/linux-x86/src/net/http/httputil/
persist.go 295 // has been closed in an HTTP keepalive sense. If req.Close equals true, the
296 // keepalive connection is logically closed after this request and the opposing

Completed in 644 milliseconds

1 2 3