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

1 2

  /libcore/ojluni/src/main/java/java/nio/channels/
ClosedChannelException.java 43 public class ClosedChannelException
52 public ClosedChannelException() { }
  /libcore/ojluni/src/main/java/sun/nio/ch/
FileLockImpl.java 58 throw new ClosedChannelException();
AsynchronousFileChannelImpl.java 80 * @throws ClosedChannelException If channel is closed
85 throw new ClosedChannelException();
ServerSocketAdaptor.java 114 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();
AsynchronousServerSocketChannelImpl.java 85 throw new ClosedChannelException();
175 throw new ClosedChannelException();
SinkChannelImpl.java 154 throw new ClosedChannelException();
SourceChannelImpl.java 155 throw new ClosedChannelException();
DatagramSocketAdaptor.java 188 throw new ClosedChannelException();
ServerSocketChannelImpl.java 119 throw new ClosedChannelException();
136 throw new ClosedChannelException();
170 throw new ClosedChannelException();
215 throw new ClosedChannelException();
236 throw new ClosedChannelException();
SocketAdaptor.java 112 throw new ClosedChannelException();
217 throw new ClosedChannelException();
AsynchronousSocketChannelImpl.java 118 throw new ClosedChannelException();
233 Throwable e = new ClosedChannelException();
366 Throwable e = new ClosedChannelException();
449 throw new ClosedChannelException();
527 throw new ClosedChannelException();
SocketChannelImpl.java 43 import java.nio.channels.ClosedChannelException;
188 throw new ClosedChannelException();
197 throw new ClosedChannelException();
213 throw new ClosedChannelException();
246 throw new ClosedChannelException();
293 private boolean ensureReadOpen() throws ClosedChannelException {
296 throw new ClosedChannelException();
306 private void ensureWriteOpen() throws ClosedChannelException {
309 throw new ClosedChannelException();
311 throw new ClosedChannelException();
    [all...]
DatagramChannelImpl.java 45 import java.nio.channels.ClosedChannelException;
211 throw new ClosedChannelException();
221 throw new ClosedChannelException();
358 private void ensureOpen() throws ClosedChannelException {
360 throw new ClosedChannelException();
756 throw new ClosedChannelException();
880 throw new ClosedChannelException();
    [all...]
FileChannelImpl.java 37 import java.nio.channels.ClosedChannelException;
125 throw new ClosedChannelException();
622 throw new ClosedChannelException();
732 throw new ClosedChannelException();
    [all...]
  /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();
  /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();
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/24/
android.jar 

Completed in 188 milliseconds

1 2