HomeSort by relevance Sort by last modified time
    Searched defs:SocketException (Results 1 - 14 of 14) sorted by null

  /libcore/luni/src/main/java/java/net/
SocketException.java 23 * This {@code SocketException} may be thrown during socket creation or setting
26 public class SocketException extends IOException {
33 public SocketException() {
39 public SocketException(String detailMessage) {
46 public SocketException(Throwable cause) {
54 public SocketException(String detailMessage, Throwable cause) {
  /cts/tests/jni/
android_net_cts_NetlinkSocket.cpp 35 jclass SocketException = env->FindClass("java/net/SocketException");
36 env->ThrowNew(SocketException, "Can't create socket");
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
SocketExceptionTest.java 20 import java.net.SocketException;
25 * @tests java.net.SocketException#SocketException()
30 throw new SocketException();
33 } catch (SocketException e) {
39 * @tests java.net.SocketException#SocketException(java.lang.String)
44 throw new SocketException("Some error message");
47 } catch (SocketException e) {
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 32 import java.net.SocketException;
73 public static void bind(FileDescriptor fd, InetAddress address, int port) throws SocketException {
78 throw new SocketException("Can't bind to a link-local address without a scope id: " + address);
98 public static boolean connect(FileDescriptor fd, InetAddress inetAddress, int port) throws SocketException {
110 public static boolean connect(FileDescriptor fd, InetAddress inetAddress, int port, int timeoutMs) throws SocketException, SocketTimeoutException {
115 } catch (SocketException ex) {
120 throw new SocketException(ex);
211 throw new SocketException("Socket closed");
230 throw new SocketException(detail, cause);
242 public static Object getSocketOption(FileDescriptor fd, int option) throws SocketException {
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 

Completed in 171 milliseconds