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

1 2 3

  /libcore/ojluni/src/main/java/java/nio/channels/
ClosedChannelException.java 43 public class ClosedChannelException
52 public ClosedChannelException() { }
AsynchronousCloseException.java 42 extends ClosedChannelException
SelectableChannel.java 191 * @throws ClosedChannelException
217 throws ClosedChannelException;
249 * @throws ClosedChannelException
275 throws ClosedChannelException
302 * @throws ClosedChannelException
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
ClosedChannelExceptionTest.java 18 import java.nio.channels.ClosedChannelException;
25 * Tests for ClosedChannelException
30 * @tests {@link java.nio.channels.ClosedChannelException#ClosedChannelException()}
33 ClosedChannelException e = new ClosedChannelException();
44 SerializationTest.verifySelf(new ClosedChannelException());
52 SerializationTest.verifyGolden(this, new ClosedChannelException());
SelectableChannelTest.java 20 import java.nio.channels.ClosedChannelException;
74 throws ClosedChannelException {
FileChannelTest.java 32 import java.nio.channels.ClosedChannelException;
199 } catch (ClosedChannelException expected) {
205 } catch (ClosedChannelException expected) {
309 fail("should throw ClosedChannelException");
310 } catch (ClosedChannelException expected) {
316 fail("should throw ClosedChannelException");
317 } catch (ClosedChannelException expected) {
323 fail("should throw ClosedChannelException");
324 } catch (ClosedChannelException expected) {
338 } catch (ClosedChannelException expected)
    [all...]
SourceChannelTest.java 21 import java.nio.channels.ClosedChannelException;
112 fail("should throw ClosedChannelException");
113 } catch (ClosedChannelException e) {
120 fail("should throw ClosedChannelException");
121 } catch (ClosedChannelException e) {
144 fail("should throw ClosedChannelException");
145 } catch (ClosedChannelException e) {
261 fail("should throw ClosedChannelException");
262 } catch (ClosedChannelException e) {
269 fail("should throw ClosedChannelException");
    [all...]
FileLockTest.java 23 import java.nio.channels.ClosedChannelException;
181 fail("should throw ClosedChannelException");
182 } catch (ClosedChannelException e) {
194 fail("should throw ClosedChannelException");
195 } catch (ClosedChannelException e) {
SinkChannelTest.java 23 import java.nio.channels.ClosedChannelException;
173 fail("should throw ClosedChannelException");
174 } catch (ClosedChannelException expected) {
253 fail("should throw ClosedChannelException");
254 } catch (ClosedChannelException e) {
271 fail("should throw ClosedChannelException");
272 } catch (ClosedChannelException e) {
390 } catch (ClosedChannelException expected) {
409 fail("should throw ClosedChannelException");
410 } catch (ClosedChannelException e)
    [all...]
ChannelsTest.java 30 import java.nio.channels.ClosedChannelException;
256 } catch (ClosedChannelException e) {
265 } catch (ClosedChannelException e) {
309 } catch (ClosedChannelException e) {
356 } catch (ClosedChannelException e) {
ServerSocketChannelTest.java 28 import java.nio.channels.ClosedChannelException;
364 fail("Should throw ClosedChannelException");
365 } catch (ClosedChannelException e) {
750 fail("Should throw a ClosedChannelException");
751 } catch (ClosedChannelException expected) {
765 fail("Should throw a ClosedChannelException");
766 } catch (ClosedChannelException expected) {
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileLockImpl.java 53 throw new ClosedChannelException();
SocketChannelImpl.java 151 throw new ClosedChannelException();
160 throw new ClosedChannelException();
176 throw new ClosedChannelException();
209 throw new ClosedChannelException();
252 private boolean ensureReadOpen() throws ClosedChannelException {
255 throw new ClosedChannelException();
265 private void ensureWriteOpen() throws ClosedChannelException {
268 throw new ClosedChannelException();
270 throw new ClosedChannelException();
598 throw new ClosedChannelException();
    [all...]
ServerSocketChannelImpl.java 118 throw new ClosedChannelException();
135 throw new ClosedChannelException();
161 throw new ClosedChannelException();
205 throw new ClosedChannelException();
226 throw new ClosedChannelException();
ServerSocketAdaptor.java 119 throw new ClosedChannelException();
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/lib/
Socket.java 25 import java.nio.channels.ClosedChannelException;
102 throw new ClosedChannelException();
119 throw new ClosedChannelException();
156 throw new ClosedChannelException();
  /libcore/ojluni/src/main/java/java/nio/channels/spi/
AbstractSelectableChannel.java 190 throws ClosedChannelException
194 throw new ClosedChannelException();
208 throw new ClosedChannelException();
283 throw new ClosedChannelException();
  /libcore/luni/src/main/java/java/nio/
NioUtils.java 22 import java.nio.channels.ClosedChannelException;
  /libcore/luni/src/test/java/libcore/java/nio/channels/
SocketChannelTest.java 34 import java.nio.channels.ClosedChannelException;
87 } catch (ClosedChannelException expected) {
294 } catch (ClosedChannelException expected) {
324 } catch (ClosedChannelException expected) {
388 } catch (ClosedChannelException expected) {}
395 } catch(ClosedChannelException expected) {}
ServerSocketChannelTest.java 27 import java.nio.channels.ClosedChannelException;
167 } catch (ClosedChannelException expected) {
190 } catch (ClosedChannelException expected) {
OldFileChannelTest.java 28 import java.nio.channels.ClosedChannelException;
658 fail("should throw ClosedChannelException");
659 } catch (ClosedChannelException e) {
666 fail("should throw ClosedChannelException");
667 } catch (ClosedChannelException e) {
674 fail("should throw ClosedChannelException");
675 } catch (ClosedChannelException e) {
679 // should throw ClosedChannelException first
682 fail("should throw ClosedChannelException");
684 } catch (ClosedChannelException e)
    [all...]
DatagramChannelTest.java 32 import java.nio.channels.ClosedChannelException;
176 } catch (ClosedChannelException expected) {
212 } catch (ClosedChannelException expected) {}
  /libcore/luni/src/test/java/libcore/java/io/
InterruptedStreamTest.java 31 import java.nio.channels.ClosedChannelException;
187 } catch (ClosedChannelException expected) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
AbstractSelectableChannelTest.java 20 import java.nio.channels.ClosedChannelException;
224 fail("Should throw ClosedChannelException");
225 } catch (ClosedChannelException e) {
  /libcore/luni/src/test/java/libcore/java/net/
ConcurrentCloseTest.java 28 import java.nio.channels.ClosedChannelException;
98 } catch (ClosedChannelException alsoOkay) {

Completed in 621 milliseconds

1 2 3