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

1 2

  /libcore/luni/src/main/java/java/net/
ConnectException.java 21 * A {@code ConnectException} is thrown if a connection cannot be established to
27 public class ConnectException extends SocketException {
34 public ConnectException() {
40 public ConnectException(String detailMessage) {
48 public ConnectException(String detailMessage, Throwable cause) {
PlainSocketImpl.java 25 import java.net.ConnectException;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
ConnectExceptionTest.java 20 import java.net.ConnectException;
29 * @tests java.net.ConnectException#ConnectException()
30 * @tests java.net.ConnectException#ConnectException(java.lang.String)
33 assertNull("Wrong message", new ConnectException().getMessage());
34 assertEquals("Wrong message", "message", new ConnectException("message").getMessage());
SocketTest.java 23 import java.net.ConnectException;
325 } catch (ConnectException e) {
336 } catch (ConnectException e) {
436 } catch (ConnectException e) {
468 } catch (ConnectException e) {
    [all...]
ServerSocketTest.java 25 import java.net.ConnectException;
557 } catch (ConnectException ex) {
    [all...]
  /external/apache-http/src/org/apache/http/conn/
HttpHostConnectException.java 33 import java.net.ConnectException;
38 * A {@link ConnectException} that specifies the {@link HttpHost} that was
41 public class HttpHostConnectException extends ConnectException {
47 public HttpHostConnectException(final HttpHost host, final ConnectException cause) {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
HttpURLConnectionTest.java 22 import java.net.ConnectException;
587 fail("should throw ConnectException");
588 } catch (ConnectException e) {
    [all...]
  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
UnixSocketTest.java 23 import java.net.ConnectException;
96 } catch (ConnectException e) {
  /libcore/luni/src/test/java/libcore/java/net/
OldUnixSocketTest.java 23 import java.net.ConnectException;
92 } catch (ConnectException e) {
SocketTest.java 22 import java.net.ConnectException;
75 } catch (ConnectException expected) {
OldSocketTest.java 24 import java.net.ConnectException;
    [all...]
URLConnectionTest.java 34 import java.net.ConnectException;
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultClientConnectionOperator.java 35 import java.net.ConnectException;
181 ConnectException cause = ex instanceof ConnectException
182 ? (ConnectException) ex : new ConnectException(ex.getMessage(), ex);
233 } catch (ConnectException ex) {
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SocketChannelTest.java 24 import java.net.ConnectException;
638 fail("Should throw a ConnectException here.");
639 } catch (ConnectException e) {
760 fail("Should throw a ConnectException here.");
761 } catch (ConnectException e) {
792 } catch (ConnectException e) {
814 } catch (ConnectException e) {
852 fail("Should throw a ConnectException here.");
853 } catch (ConnectException e) {
888 } catch (ConnectException e)
    [all...]
  /libcore/luni/src/main/java/java/nio/
SocketChannelImpl.java 24 import java.net.ConnectException;
171 if (e instanceof ConnectException && !isBlocking()) {
239 } catch (ConnectException e) {
DatagramChannelImpl.java 23 import java.net.ConnectException;
132 } catch (ConnectException e) {
133 // ConnectException means connect fail, not exception
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 23 import java.net.ConnectException;
114 throw new ConnectException(connectDetail(inetAddress, port, timeoutMs, errnoException), errnoException);
214 throw new ConnectException(detail, cause);
  /external/antlr/src/org/antlr/runtime/debug/
RemoteDebugEventSocketListener.java 37 import java.net.ConnectException;
167 throw new ConnectException();
  /prebuilt/common/http-client/
httpclient-4.1.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/5/
android.jar 

Completed in 358 milliseconds

1 2