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

1 2

  /dalvik/libcore/luni/src/main/java/java/net/
SocketOptions.java 38 * Valid values for this option are in the range {@code 0 <= SO_LINGER <=
41 public static final int SO_LINGER = 128;
Socket.java 532 * Gets the value of the socket option {@code SocketOptions.SO_LINGER}.
534 * @return the current value of the option {@code SocketOptions.SO_LINGER}
538 * @see SocketOptions#SO_LINGER
542 return ((Integer) impl.getOption(SocketOptions.SO_LINGER)).intValue();
679 * Sets the state of the {@code SocketOptions.SO_LINGER} with the given
689 * @see SocketOptions#SO_LINGER
705 impl.setOption(SocketOptions.SO_LINGER, Integer.valueOf(timeout));
707 impl.setOption(SocketOptions.SO_LINGER, Boolean.FALSE);
    [all...]
  /external/apache-http/src/org/apache/http/params/
CoreConnectionPNames.java 79 * Sets SO_LINGER with the specified linger time in seconds. The maximum timeout
86 * @see java.net.SocketOptions#SO_LINGER
88 public static final String SO_LINGER = "http.socket.linger";
HttpConnectionParams.java 142 return params.getIntParameter(CoreConnectionPNames.SO_LINGER, -1);
159 params.setIntParameter(CoreConnectionPNames.SO_LINGER, value);
  /bionic/libc/kernel/arch-arm/asm/
socket.h 33 #define SO_LINGER 13
  /external/kernel-headers/original/asm-arm/
socket.h 23 #define SO_LINGER 13
  /ndk/build/platforms/android-3/arch-arm/usr/include/asm/
socket.h 33 #define SO_LINGER 13
  /ndk/build/platforms/android-4/arch-arm/usr/include/asm/
socket.h 33 #define SO_LINGER 13
  /ndk/build/platforms/android-5/arch-arm/usr/include/asm/
socket.h 33 #define SO_LINGER 13
  /ndk/build/platforms/android-8/arch-arm/usr/include/asm/
socket.h 33 #define SO_LINGER 13
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
SocketTestCase.java 29 public static final int SO_LINGER = 2;
76 case SO_LINGER:
146 case SO_LINGER:
SocketTest.java 464 handleException(e, SO_LINGER);
699 ensureExceptionThrownIfOptionIsUnsupportedOnOS(SO_LINGER);
702 handleException(e, SO_LINGER);
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
socket.h 33 #define SO_LINGER 13
  /external/kernel-headers/original/asm-x86/
socket.h 23 #define SO_LINGER 13
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
socket.h 33 #define SO_LINGER 13
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
socket.h 33 #define SO_LINGER 13
  /external/strace/
net.c 535 #ifdef SO_LINGER
536 { SO_LINGER, "SO_LINGER" },
    [all...]
  /frameworks/base/core/jni/
android_net_LocalSocketImpl.cpp 242 *opt = SO_LINGER;
280 case SO_LINGER:
326 case SO_LINGER: {
328 * SO_LINGER is special because it needs to use a special
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
SocketChannelImpl.java 838 return ((Integer) socketImpl.getOption(SocketOptions.SO_LINGER))
900 socketImpl.setOption(SocketOptions.SO_LINGER, Integer.valueOf(val));
    [all...]
  /external/bluetooth/bluez/rfcomm/
main.c 362 if (setsockopt(sk, SOL_SOCKET, SO_LINGER, &l, sizeof(l)) < 0) {
538 if (setsockopt(nsk, SOL_SOCKET, SO_LINGER, &l, sizeof(l)) < 0) {
  /external/bluetooth/bluez/test/
rctest.c 185 /* Enable SO_LINGER */
189 if (setsockopt(sk, SOL_SOCKET, SO_LINGER, &l, sizeof(l)) < 0) {
190 syslog(LOG_ERR, "Can't enable SO_LINGER: %s (%d)",
369 /* Enable SO_LINGER */
373 if (setsockopt(nsk, SOL_SOCKET, SO_LINGER, &l, sizeof(l)) < 0) {
374 syslog(LOG_ERR, "Can't enable SO_LINGER: %s (%d)",
583 "\t[-L seconds] enabled SO_LINGER option\n"
l2test.c 242 /* Enable SO_LINGER */
246 if (setsockopt(sk, SOL_SOCKET, SO_LINGER, &l, sizeof(l)) < 0) {
247 syslog(LOG_ERR, "Can't enable SO_LINGER: %s (%d)",
491 /* Enable SO_LINGER */
495 if (setsockopt(nsk, SOL_SOCKET, SO_LINGER, &l, sizeof(l)) < 0) {
496 syslog(LOG_ERR, "Can't enable SO_LINGER: %s (%d)",
1032 "\t[-L seconds] enable SO_LINGER\n"
  /external/quake/quake/src/WinQuake/
mpdosock.h 371 #define SO_LINGER 0x0080 /* linger on close if data present */
374 #define SO_DONTLINGER (u_int)(~SO_LINGER)
net_bw.cpp 84 #define SO_LINGER 0x0080 /* linger on close if data present */
  /external/dropbear/
dbutil.c 255 setsockopt(sock, SOL_SOCKET, SO_LINGER, (void*)&linger, sizeof(linger));

Completed in 811 milliseconds

1 2