Searched defs:ioe (Results 1 - 9 of 9) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
H A DProxySelector.java160 * @param ioe
164 public abstract void connectFailed(URI uri, SocketAddress sa, IOException ioe); argument
/libcore/ojluni/src/main/java/sun/net/spi/
H A DDefaultProxySelector.java304 public void connectFailed(URI uri, SocketAddress sa, IOException ioe) { argument
305 if (uri == null || sa == null || ioe == null) {
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/http/
H A DHttpURLConnectionTest.java153 public void connectFailed(URI uri, SocketAddress sa, IOException ioe) { argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DProxySelectorTest.java536 public void connectFailed(URI uri, SocketAddress sa, IOException ioe) { argument
H A DURLTest.java1110 public void connectFailed(URI uri, SocketAddress sa, IOException ioe) { argument
/libcore/luni/src/test/java/libcore/java/net/
H A DFtpURLConnectionTest.java333 public void connectFailed(URI uri, SocketAddress sa, IOException ioe) { argument
334 lastException = ioe;
H A DOldURLTest.java573 public void connectFailed(URI uri, SocketAddress sa, IOException ioe) { argument
/libcore/luni/src/test/java/libcore/java/nio/channels/
H A DFileIOInterruptTest.java132 assertSame(InterruptedIOException.class, streamReader.ioe.getClass());
174 assertSame(InterruptedIOException.class, streamWriter.ioe.getClass());
276 assertSame(AsynchronousCloseException.class, channelReader.ioe.getClass());
307 assertSame(ClosedByInterruptException.class, channelReader.ioe.getClass());
417 assertSame(AsynchronousCloseException.class, channelWriter.ioe.getClass());
448 assertSame(ClosedByInterruptException.class, channelWriter.ioe.getClass());
459 volatile IOException ioe; field in class:FileIOInterruptTest.StreamReader
474 this.ioe = e;
493 volatile IOException ioe; field in class:FileIOInterruptTest.StreamWriter
510 this.ioe
541 volatile IOException ioe; field in class:FileIOInterruptTest.ChannelReader
586 volatile IOException ioe; field in class:FileIOInterruptTest.ChannelWriter
[all...]
/libcore/ojluni/src/main/java/java/nio/file/
H A DFileTreeWalker.java131 private final IOException ioe; field in class:FileTreeWalker.Event
133 private Event(EventType type, Path file, BasicFileAttributes attrs, IOException ioe) { argument
137 this.ioe = ioe;
144 Event(EventType type, Path file, IOException ioe) { argument
145 this(type, file, null, ioe);
161 return ioe;
220 } catch (IOException ioe) {
222 throw ioe;
277 } catch (IOException ioe) {
[all...]

Completed in 5965 milliseconds