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

1 2

  /libcore/ojluni/src/main/java/java/net/
BindException.java 37 public class BindException extends SocketException {
41 * Constructs a new BindException with the specified detail
47 public BindException(String msg) {
52 * Construct a new BindException with no detailed message.
54 public BindException() {}
58 public BindException(String msg, Throwable cause) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
BindExceptionTest.java 20 import java.net.BindException;
25 * java.net.BindException#BindException()
28 // Test for method java.net.BindException()
30 throw new BindException();
31 } catch (BindException e) {
34 fail("Exception during BindException test" + e.toString());
40 * java.net.BindException#BindException(java.lang.String)
43 // Test for method java.net.BindException(java.lang.String
    [all...]
ServerSocketTest.java 31 import java.net.BindException;
148 } catch (BindException e) {
298 } catch (BindException e) {
    [all...]
DatagramSocketTest.java 22 import java.net.BindException;
797 } catch (BindException expected) {
831 } catch (BindException expected) {
    [all...]
MulticastSocketTest.java 21 import java.net.BindException;
    [all...]
  /external/guice/extensions/throwingproviders/test/com/google/inject/throwingproviders/
CheckedProviderMethodsModuleTest.java 35 import java.net.BindException;
57 T get() throws RemoteException, BindException;
102 float getFloat() throws BindException {
103 throw new BindException("foo");
125 public void testNoAnnotationNoScope() throws BindException, RemoteException {
132 public void testWithScope() throws BindException, RemoteException {
145 public void testWithAnnotation() throws BindException, RemoteException {
153 public void testWithInjectedParameters() throws BindException, RemoteException {
172 } catch (BindException e) {
177 public void testExposedMethod() throws BindException, RemoteException
    [all...]
CheckedProviderTest.java 57 import java.net.BindException;
126 Foo throwOrGet() throws RemoteException, BindException {
134 Foo notExceptionScopingThrowOrGet() throws RemoteException, BindException {
175 mockRemoteProvider.throwOnNextGet(new BindException("kaboom!"));
176 MockFoo.nextToThrow = new BindException("kaboom!");
180 } catch (BindException expected) {
330 Foo throwOrGet() throws RemoteException, BindException {
336 Foo throwOrGet2() throws RemoteException, BindException {
649 T get(T defaultValue) throws RemoteException, BindException;
653 public T get() throws RemoteException, BindException;
    [all...]
  /external/sl4a/Utils/src/com/googlecode/android_scripting/
SimpleServer.java 28 import java.net.BindException;
203 } catch (BindException e) {
  /libcore/luni/src/test/java/libcore/java/nio/channels/
DatagramChannelTest.java 22 import java.net.BindException;
215 } catch (BindException expected) {}
AsynchronousServerSocketChannelTest.java 22 import java.net.BindException;
100 } catch (BindException expected) {}
SocketChannelTest.java 25 import java.net.BindException;
327 } catch (BindException expected) {
AsynchronousSocketChannelTest.java 22 import java.net.BindException;
139 } catch (BindException expected) {}
    [all...]
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 28 import java.net.BindException;
103 throw new BindException(errnoException.getMessage(), errnoException);
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTest.java 23 import java.net.BindException;
135 } catch (BindException expected) {
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
SocketChannelTest.java 23 import java.net.BindException;
628 fail("Should throw BindException");
629 } catch (BindException e1) {
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 359 milliseconds

1 2