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

1 2 3 4 5 6

  /frameworks/base/core/java/org/apache/http/params/
CoreConnectionPNames.java 84 * Sets SO_LINGER with the specified linger time in seconds. The maximum timeout
91 * @see java.net.SocketOptions#SO_LINGER
93 public static final String SO_LINGER = "http.socket.linger";
  /libcore/ojluni/src/main/java/java/net/
SocketOptions.java 56 * s.setOption(SO_LINGER, new Integer(10));
57 * // OK - set SO_LINGER w/ timeout of 10 sec.
58 * s.setOption(SO_LINGER, new Double(10));
72 * s.setOption(SO_LINGER, new Boolean(false));
73 * // OK - disables SO_LINGER
110 * Object o = s.getOption(SO_LINGER);
240 @Native public final static int SO_LINGER = 0x0080;
StandardSocketOptions.java 218 public static final SocketOption<Integer> SO_LINGER =
219 new StdSocketOption<Integer>("SO_LINGER", Integer.class);
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTestCase.java 33 public static final int SO_LINGER = 2;
71 case SO_LINGER:
139 case SO_LINGER:
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
socket.h 23 #define SO_LINGER 13
  /bionic/libc/kernel/uapi/asm-generic/
socket.h 37 #define SO_LINGER 13
  /bionic/libc/kernel/uapi/asm-mips/asm/
socket.h 28 #define SO_LINGER 0x0080
  /external/kernel-headers/original/uapi/asm-generic/
socket.h 24 #define SO_LINGER 13
  /external/kernel-headers/original/uapi/asm-mips/asm/
socket.h 29 #define SO_LINGER 0x0080 /* Block on close of a reliable
  /external/python/cpython2/Lib/plat-os2emx/
SOCKET.py 21 SO_LINGER = 0x0080
  /external/syslinux/core/lwip/src/include/lwip/
sockets.h 84 #define SO_LINGER 0x0080 /* linger on close if data present */
88 #define SO_DONTLINGER ((int)(~SO_LINGER))
  /prebuilts/go/darwin-x86/src/syscall/
net_nacl.go 136 SO_LINGER
types_windows.go 539 SO_LINGER = 128
  /prebuilts/go/linux-x86/src/syscall/
net_nacl.go 136 SO_LINGER
types_windows.go 539 SO_LINGER = 128
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
socket.h 121 #define SO_LINGER 0x0080 /* linger on close if data present */
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_ws1_undef.h 123 #undef SO_LINGER
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winsock.h 164 #define SO_LINGER 0x0080
167 #define SO_DONTLINGER (u_int)(~SO_LINGER)
winsock2.h 189 #define SO_LINGER 0x0080
192 #define SO_DONTLINGER (int)(~SO_LINGER)
    [all...]
  /external/python/cpython2/Lib/plat-linux2/
IN.py 458 SO_LINGER = 13
  /prebuilts/gdb/linux-x86/lib/python2.7/plat-linux2/
IN.py 458 SO_LINGER = 13
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/plat-linux2/
IN.py 458 SO_LINGER = 13
  /external/python/cpython2/Lib/plat-atheos/
IN.py 775 SO_LINGER = 13
  /external/python/cpython2/Lib/plat-unixware7/
IN.py 239 SO_LINGER = 0x0080
248 SO_DONTLINGER = (~SO_LINGER)
  /libcore/luni/src/main/java/android/system/
OsConstants.java 476 public static final int SO_LINGER = placeholder();
    [all...]

Completed in 118 milliseconds

1 2 3 4 5 6