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

1 2 3 4

  /libcore/ojluni/src/main/java/java/nio/channels/
ClosedChannelException.java 43 public class ClosedChannelException
52 public ClosedChannelException() { }
AsynchronousCloseException.java 42 extends ClosedChannelException
SelectableChannel.java 194 * @throws ClosedChannelException
220 throws ClosedChannelException;
252 * @throws ClosedChannelException
278 throws ClosedChannelException
305 * @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...]
  /external/brotli/java/org/brotli/wrapper/dec/
BrotliDecoderChannel.java 11 import java.nio.channels.ClosedChannelException;
56 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();
  /external/brotli/java/org/brotli/wrapper/enc/
BrotliEncoderChannel.java 11 import java.nio.channels.ClosedChannelException;
62 throw new ClosedChannelException();
  /libcore/ojluni/src/main/java/java/nio/channels/spi/
AbstractSelectableChannel.java 193 throws ClosedChannelException
197 throw new ClosedChannelException();
211 throw new ClosedChannelException();
289 throw new ClosedChannelException();
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileLockImpl.java 58 throw new ClosedChannelException();
SocketChannelImpl.java 43 import java.nio.channels.ClosedChannelException;
190 throw new ClosedChannelException();
199 throw new ClosedChannelException();
215 throw new ClosedChannelException();
248 throw new ClosedChannelException();
295 private boolean ensureReadOpen() throws ClosedChannelException {
298 throw new ClosedChannelException();
308 private void ensureWriteOpen() throws ClosedChannelException {
311 throw new ClosedChannelException();
313 throw new ClosedChannelException();
    [all...]
ServerSocketChannelImpl.java 118 throw new ClosedChannelException();
135 throw new ClosedChannelException();
169 throw new ClosedChannelException();
214 throw new ClosedChannelException();
235 throw new ClosedChannelException();
SimpleAsynchronousFileChannelImpl.java 84 // then it will throw ClosedChannelException
187 Throwable exc = new ClosedChannelException();
254 throw new ClosedChannelException();
302 Throwable exc = (isOpen()) ? null : new ClosedChannelException();
356 Throwable exc = (isOpen()) ? null : new ClosedChannelException();
  /external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
ClientEndpoint.java 25 import java.nio.channels.ClosedChannelException;
82 } catch (ClosedChannelException e) {
ServerEndpoint.java 25 import java.nio.channels.ClosedChannelException;
186 } catch (ClosedChannelException e) {
  /libcore/luni/src/main/java/java/nio/
NioUtils.java 22 import java.nio.channels.ClosedChannelException;
  /libcore/luni/src/test/java/libcore/java/nio/channels/
AsynchronousSocketChannelTest.java 32 import java.nio.channels.ClosedChannelException;
183 } catch (ClosedChannelException expected) {}
187 } catch (ClosedChannelException expected) {}
198 assertTrue(expected.getCause() instanceof ClosedChannelException);
206 } catch (ClosedChannelException expected) {}
214 } catch (ClosedChannelException expected) {}
222 } catch (ClosedChannelException expected) {}
229 assertTrue(expected.getCause() instanceof ClosedChannelException);
237 } catch (ClosedChannelException expected) {}
244 } catch (ClosedChannelException expected) {
    [all...]
AsynchronousServerSocketChannelTest.java 33 import java.nio.channels.ClosedChannelException;
253 assertTrue(expected.getCause() instanceof ClosedChannelException);
262 } catch(ClosedChannelException expected) {}
267 } catch(ClosedChannelException expected) {}
272 } catch(ClosedChannelException expected) {}
302 assertTrue(expected.getCause() instanceof ClosedChannelException);
SocketChannelTest.java 36 import java.nio.channels.ClosedChannelException;
96 } catch (ClosedChannelException expected) {
304 } catch (ClosedChannelException expected) {
335 } catch (ClosedChannelException expected) {
403 } catch (ClosedChannelException expected) {
413 } catch (ClosedChannelException expected) {
ServerSocketChannelTest.java 27 import java.nio.channels.ClosedChannelException;
167 } catch (ClosedChannelException expected) {
190 } catch (ClosedChannelException expected) {
  /libcore/luni/src/test/java/libcore/java/io/
InterruptedStreamTest.java 31 import java.nio.channels.ClosedChannelException;
187 } catch (ClosedChannelException expected) {

Completed in 373 milliseconds

1 2 3 4