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

1 2 3

  /frameworks/base/core/java/org/apache/http/params/
CoreConnectionPNames.java 50 * Defines the default socket timeout (<tt>SO_TIMEOUT</tt>) in milliseconds which is the
57 * @see java.net.SocketOptions#SO_TIMEOUT
59 public static final String SO_TIMEOUT = "http.socket.timeout";
HttpConnectionParams.java 61 * Returns the default socket timeout (<tt>SO_TIMEOUT</tt>) in milliseconds which is the
72 return params.getIntParameter(CoreConnectionPNames.SO_TIMEOUT, 0);
76 * Sets the default socket timeout (<tt>SO_TIMEOUT</tt>) in milliseconds which is the
87 params.setIntParameter(CoreConnectionPNames.SO_TIMEOUT, timeout);
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTestCase.java 37 public static final int SO_TIMEOUT = 4;
74 case SO_TIMEOUT:
143 case SO_TIMEOUT:
MulticastSocketTest.java 34 private static final int SO_TIMEOUT = 1000;
49 mcSock.setSoTimeout(SO_TIMEOUT);
  /libcore/ojluni/src/main/java/java/net/
SocketOptions.java 261 @Native public final static int SO_TIMEOUT = 0x1006;
AbstractPlainDatagramSocketImpl.java 286 case SO_TIMEOUT:
288 throw new SocketException("bad argument for SO_TIMEOUT");
356 case SO_TIMEOUT:
ServerSocket.java 636 * Enable/disable {@link SocketOptions#SO_TIMEOUT SO_TIMEOUT} with the
654 getImpl().setOption(SocketOptions.SO_TIMEOUT, new Integer(timeout));
658 * Retrieve setting for {@link SocketOptions#SO_TIMEOUT SO_TIMEOUT}.
660 * @return the {@link SocketOptions#SO_TIMEOUT SO_TIMEOUT} value
668 Object o = getImpl().getOption(SocketOptions.SO_TIMEOUT);
    [all...]
AbstractPlainSocketImpl.java 51 /* instance variable for SO_TIMEOUT */
254 case SO_TIMEOUT:
256 throw new SocketException("Bad parameter for SO_TIMEOUT");
305 if (opt == SO_TIMEOUT) {
314 if (opt == SO_TIMEOUT) {
744 * Return the current value of SO_TIMEOUT
DatagramSocket.java     [all...]
Inet6AddressImpl.java 265 IoBridge.setSocketOption(fd, SocketOptions.SO_TIMEOUT, sockTo);
PlainSocketImpl.java 280 // OpenJDK does not set SO_TIMEOUT on Linux.
281 if (cmd == SO_TIMEOUT) {
Socket.java     [all...]
  /frameworks/base/core/java/android/net/
LocalSocket.java 243 impl.setOption(SocketOptions.SO_TIMEOUT, Integer.valueOf(n));
247 return ((Integer) impl.getOption(SocketOptions.SO_TIMEOUT)).intValue();
LocalSocketImpl.java 456 case SocketOptions.SO_TIMEOUT:
518 case SocketOptions.SO_TIMEOUT:
  /frameworks/base/tests/CoreTests/android/core/
TestHttpClient.java 72 .setIntParameter(CoreConnectionPNames.SO_TIMEOUT, 5000)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ServerSocketChannelTest.java 680 final int SO_TIMEOUT = 200;
681 ss.setSoTimeout(SO_TIMEOUT);
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 340 case SocketOptions.SO_TIMEOUT:
438 case SocketOptions.SO_TIMEOUT:
  /libcore/luni/src/test/java/libcore/libcore/io/
OsTest.java 484 IoBridge.setSocketOption(serverFd, SocketOptions.SO_TIMEOUT, new Integer(4000));
    [all...]
  /external/robolectric/v1/lib/main/
httpcore-4.0.1.jar 
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
httpcore-4.0.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
httpcore-4.0.1.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
httpcore-4.0.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
httpcore-4.0.1.jar 
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 

Completed in 842 milliseconds

1 2 3