HomeSort by relevance Sort by last modified time
    Searched defs:errnoException (Results 1 - 15 of 15) sorted by null

  /libcore/luni/src/main/java/java/io/
FileInputStream.java 25 import libcore.io.ErrnoException;
192 } catch (ErrnoException errnoException) {
193 if (errnoException.errno == ESPIPE) {
197 throw errnoException.rethrowAsIOException();
File.java 26 import libcore.io.ErrnoException;
284 } catch (ErrnoException errnoException) {
315 } catch (ErrnoException errnoException) {
532 } catch (ErrnoException errnoException) {
547 } catch (ErrnoException errnoException) {
579 } catch (ErrnoException errnoException)
    [all...]
RandomAccessFile.java 26 import libcore.io.ErrnoException;
224 } catch (ErrnoException errnoException) {
225 throw errnoException.rethrowAsIOException();
239 } catch (ErrnoException errnoException) {
240 throw errnoException.rethrowAsIOException();
605 } catch (ErrnoException errnoException) {
606 throw errnoException.rethrowAsIOException()
    [all...]
  /libcore/luni/src/main/java/java/nio/
PipeImpl.java 25 import libcore.io.ErrnoException;
47 } catch (ErrnoException errnoException) {
48 throw errnoException.rethrowAsIOException();
IoVec.java 22 import libcore.io.ErrnoException;
83 } catch (ErrnoException errnoException) {
84 throw errnoException.rethrowAsIOException();
MemoryBlock.java 24 import libcore.io.ErrnoException;
42 } catch (ErrnoException errnoException) {
45 throw new AssertionError(errnoException);
118 } catch (ErrnoException errnoException) {
119 throw errnoException.rethrowAsIOException();
FileChannelImpl.java 35 import libcore.io.ErrnoException;
122 } catch (ErrnoException errnoException) {
123 throw errnoException.rethrowAsIOException();
194 } catch (ErrnoException errnoException) {
195 throw errnoException.rethrowAsIOException();
210 } catch (ErrnoException errnoException) {
211 throw errnoException.rethrowAsIOException()
    [all...]
SelectorImpl.java 38 import libcore.io.ErrnoException;
98 } catch (ErrnoException errnoException) {
99 throw errnoException.rethrowAsIOException();
180 } catch (ErrnoException errnoException) {
181 if (errnoException.errno != EINTR) {
182 throw errnoException.rethrowAsIOException();
317 } catch (ErrnoException ignored) {
DatagramChannelImpl.java 39 import libcore.io.ErrnoException;
157 } catch (ErrnoException errnoException) {
158 throw errnoException.rethrowAsIOException();
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 63 } catch (ErrnoException errnoException) {
64 if (errnoException.errno == ENOTTY) {
68 throw errnoException.rethrowAsIOException();
88 } catch (ErrnoException errnoException) {
89 throw new BindException(errnoException.getMessage(), errnoException);
113 } catch (ErrnoException errnoException) {
    [all...]
IoUtils.java 41 } catch (ErrnoException errnoException) {
42 throw errnoException.rethrowAsIOException();
94 } catch (ErrnoException errnoException) {
95 throw errnoException.rethrowAsIOException();
161 } catch (ErrnoException errnoException) {
DiskLruCache.java 359 } catch (ErrnoException errnoException) {
360 if (errnoException.errno != OsConstants.ENOENT) {
361 throw errnoException.rethrowAsIOException();
  /libcore/luni/src/main/java/java/net/
DatagramSocket.java 23 import libcore.io.ErrnoException;
302 } catch (ErrnoException errnoException) {
303 throw errnoException.rethrowAsSocketException();
PlainSocketImpl.java 36 import libcore.io.ErrnoException;
106 } catch (ErrnoException errnoException) {
107 if (errnoException.errno == EAGAIN) {
108 throw new SocketTimeoutException(errnoException);
110 throw errnoException.rethrowAsSocketException();
282 } catch (ErrnoException errnoException) {
283 throw errnoException.rethrowAsSocketException();
367 } catch (ErrnoException errnoException)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSocketImpl.java 47 import libcore.io.ErrnoException;
    [all...]

Completed in 269 milliseconds