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

  /external/apache-http/src/org/apache/http/params/
CoreConnectionPNames.java 45 * Defines the default socket timeout (<tt>SO_TIMEOUT</tt>) in milliseconds which is the
52 * @see java.net.SocketOptions#SO_TIMEOUT
54 public static final String SO_TIMEOUT = "http.socket.timeout";
HttpConnectionParams.java 56 * Returns the default socket timeout (<tt>SO_TIMEOUT</tt>) in milliseconds which is the
67 return params.getIntParameter(CoreConnectionPNames.SO_TIMEOUT, 0);
71 * Sets the default socket timeout (<tt>SO_TIMEOUT</tt>) in milliseconds which is the
82 params.setIntParameter(CoreConnectionPNames.SO_TIMEOUT, timeout);
  /libcore/luni/src/main/java/java/net/
SocketOptions.java 54 public static final int SO_TIMEOUT = 4102;
ServerSocket.java 180 * Gets the socket {@link SocketOptions#SO_TIMEOUT accept timeout}.
187 return ((Integer) impl.getOption(SocketOptions.SO_TIMEOUT)).intValue();
226 * Sets the {@link SocketOptions#SO_TIMEOUT accept timeout} in milliseconds for this socket.
241 impl.setOption(SocketOptions.SO_TIMEOUT, Integer.valueOf(timeout));
DatagramSocket.java 221 * Gets the socket {@link SocketOptions#SO_TIMEOUT receive timeout}.
228 return ((Integer) impl.getOption(SocketOptions.SO_TIMEOUT)).intValue();
333 * Sets the {@link SocketOptions#SO_TIMEOUT read timeout} in milliseconds for this socket.
348 impl.setOption(SocketOptions.SO_TIMEOUT, Integer.valueOf(timeout));
Socket.java 431 * Returns this socket's {@link SocketOptions#SO_TIMEOUT receive timeout}.
435 return (Integer) impl.getOption(SocketOptions.SO_TIMEOUT);
513 * Sets this socket's {@link SocketOptions#SO_TIMEOUT read timeout} in milliseconds.
522 impl.setOption(SocketOptions.SO_TIMEOUT, Integer.valueOf(timeout));
    [all...]
PlainSocketImpl.java 114 newImpl.setOption(SocketOptions.SO_TIMEOUT, Integer.valueOf(0));
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTestCase.java 32 public static final int SO_TIMEOUT = 4;
69 case SO_TIMEOUT:
138 case SO_TIMEOUT:
  /frameworks/base/core/java/android/net/
LocalSocket.java 195 impl.setOption(SocketOptions.SO_TIMEOUT, Integer.valueOf(n));
199 return ((Integer) impl.getOption(SocketOptions.SO_TIMEOUT)).intValue();
LocalSocketImpl.java 384 if (optID == SocketOptions.SO_TIMEOUT) {
  /frameworks/base/tests/CoreTests/android/core/
TestHttpClient.java 72 .setIntParameter(CoreConnectionPNames.SO_TIMEOUT, 5000)
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
ServerSocketChannelTest.java 538 final int SO_TIMEOUT = 10;
544 ss.setSoTimeout(SO_TIMEOUT);
550 assertEquals(SO_TIMEOUT, soTimeout);
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 278 case SocketOptions.SO_TIMEOUT:
359 case SocketOptions.SO_TIMEOUT:
  /prebuilt/common/http-client/
httpcore-4.1.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/15/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 502 milliseconds