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

  /dalvik/libcore/nio/src/main/java/java/nio/channels/
IllegalBlockingModeException.java 20 * An {@code IllegalBlockingModeException} is thrown when an operation that
24 public class IllegalBlockingModeException extends IllegalStateException {
29 * Constructs a {@code IllegalBlockingModeException}.
31 public IllegalBlockingModeException() {
Channels.java 52 * <li>It throws an {@link IllegalBlockingModeException} if the channel is
73 * <li>It throws an {@link IllegalBlockingModeException} if the channel is
253 throw new IllegalBlockingModeException();
317 throw new IllegalBlockingModeException();
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
IllegalBlockingModeExceptionTest.java 23 import java.nio.channels.IllegalBlockingModeException;
30 * Tests for IllegalBlockingModeException
32 @TestTargetClass(IllegalBlockingModeException.class)
36 * @tests {@link java.nio.channels.IllegalBlockingModeException#IllegalBlockingModeException()}
39 IllegalBlockingModeException e = new IllegalBlockingModeException();
58 method = "IllegalBlockingModeException",
64 SerializationTest.verifySelf(new IllegalBlockingModeException());
80 method = "IllegalBlockingModeException",
    [all...]
ChannelsTest.java 37 import java.nio.channels.IllegalBlockingModeException;
390 // Read methods throw IllegalBlockingModeException if underlying channel
397 } catch (IllegalBlockingModeException e) {
402 } catch (IllegalBlockingModeException e) {
407 } catch (IllegalBlockingModeException e) {
479 // Write methods throw IllegalBlockingModeException if underlying
486 } catch (IllegalBlockingModeException e) {
491 } catch (IllegalBlockingModeException e) {
496 } catch (IllegalBlockingModeException e) {
    [all...]
ServerSocketChannelTest.java 37 import java.nio.channels.IllegalBlockingModeException;
765 notes = "Regression test. Verifies IllegalBlockingModeException.",
775 fail("Should throw an IllegalBlockingModeException");
776 } catch (IllegalBlockingModeException e) {
782 fail("Should throw an IllegalBlockingModeException");
783 } catch (IllegalBlockingModeException e) {
793 notes = "Regression test. Verifies IllegalBlockingModeException.",
803 fail("Should throw an IllegalBlockingModeException");
804 } catch (IllegalBlockingModeException e) {
810 fail("Should throw an IllegalBlockingModeException");
    [all...]
SocketChannelTest.java 43 import java.nio.channels.IllegalBlockingModeException;
751 fail("Should throw IllegalBlockingModeException");
752 } catch (IllegalBlockingModeException e1) {
820 fail("Should throw IllegalBlockingModeException");
821 } catch (IllegalBlockingModeException e) {
    [all...]
DatagramChannelTest.java 37 import java.nio.channels.IllegalBlockingModeException;
    [all...]
  /dalvik/libcore/nio/src/main/java/java/nio/channels/spi/
AbstractSelectableChannel.java 23 import java.nio.channels.IllegalBlockingModeException;
126 * @throws IllegalBlockingModeException
144 throw new IllegalBlockingModeException();
236 * @throws IllegalBlockingModeException
251 throw new IllegalBlockingModeException();
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
ServerSocketChannelImpl.java 32 import java.nio.channels.IllegalBlockingModeException;
224 * IllegalBlockingModeException.
228 throw new IllegalBlockingModeException();
232 throw new IllegalBlockingModeException();
SocketChannelImpl.java 41 import java.nio.channels.IllegalBlockingModeException;
730 throw new IllegalBlockingModeException();
987 * Throws an IllegalBlockingModeException if the channel is in non-blocking
    [all...]
DatagramChannelImpl.java 39 import java.nio.channels.IllegalBlockingModeException;
808 throw new IllegalBlockingModeException();
819 throw new IllegalBlockingModeException();
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/
AbstractSelectableChannelTest.java 27 import java.nio.channels.IllegalBlockingModeException;
256 fail("Should throw IllegalBlockingModeException");
257 } catch (IllegalBlockingModeException e) {
270 fail("Should throw IllegalBlockingModeException");
271 } catch (IllegalBlockingModeException e) {
357 fail("Should throw IllegalBlockingModeException");
358 } catch (IllegalBlockingModeException e) {
397 fail("Should have thrown IllegalBlockingModeException");
398 } catch (IllegalBlockingModeException e) {
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
ServerSocketTest.java 40 import java.nio.channels.IllegalBlockingModeException;
442 fail("IllegalBlockingModeException was not thrown.");
443 } catch(IllegalBlockingModeException ibme) {
    [all...]
SocketTest.java 44 import java.nio.channels.IllegalBlockingModeException;
    [all...]
DatagramSocketTest.java 44 import java.nio.channels.IllegalBlockingModeException;
    [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 267 milliseconds