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

  /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 40 } catch (ErrnoException errnoException) {
41 throw errnoException.rethrowAsIOException();
93 } catch (ErrnoException errnoException) {
94 throw errnoException.rethrowAsIOException();
DiskLruCache.java 340 } catch (ErrnoException errnoException) {
341 if (errnoException.errno != OsConstants.ENOENT) {
342 throw errnoException.rethrowAsIOException();
  /libcore/luni/src/main/java/java/io/
FileDescriptor.java 20 import libcore.io.ErrnoException;
72 } catch (ErrnoException errnoException) {
73 SyncFailedException sfe = new SyncFailedException(errnoException.getMessage());
74 sfe.initCause(errnoException);
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/
FileChannelImpl.java 35 import libcore.io.ErrnoException;
123 } catch (ErrnoException errnoException) {
124 throw errnoException.rethrowAsIOException();
195 } catch (ErrnoException errnoException) {
196 throw errnoException.rethrowAsIOException();
211 } catch (ErrnoException errnoException) {
212 throw errnoException.rethrowAsIOException()
    [all...]
MappedByteBuffer.java 20 import libcore.io.ErrnoException;
90 } catch (ErrnoException errnoException) {
103 } catch (ErrnoException ignored) {
120 } catch (ErrnoException errnoException) {
123 throw new AssertionError(errnoException);
IoVec.java 22 import libcore.io.ErrnoException;
83 } catch (ErrnoException errnoException) {
84 throw errnoException.rethrowAsIOException();
PipeImpl.java 25 import libcore.io.ErrnoException;
44 } catch (ErrnoException errnoException) {
45 throw errnoException.rethrowAsIOException();
MemoryBlock.java 24 import libcore.io.ErrnoException;
42 } catch (ErrnoException errnoException) {
45 throw new AssertionError(errnoException);
119 } catch (ErrnoException errnoException) {
120 throw errnoException.rethrowAsIOException();
SelectorImpl.java 38 import libcore.io.ErrnoException;
98 } catch (ErrnoException errnoException) {
99 throw errnoException.rethrowAsIOException();
180 } catch (ErrnoException errnoException) {
181 throw errnoException.rethrowAsIOException();
315 } catch (ErrnoException ignored) {
DatagramChannelImpl.java 39 import libcore.io.ErrnoException;
157 } catch (ErrnoException errnoException) {
158 throw errnoException.rethrowAsIOException();
SocketChannelImpl.java 45 import libcore.io.ErrnoException;
207 } catch (ErrnoException errnoException) {
208 throw new AssertionError(errnoException);
  /libcore/luni/src/main/java/java/net/
PlainSocketImpl.java 36 import libcore.io.ErrnoException;
106 } catch (ErrnoException errnoException) {
107 if (errnoException.errno == EAGAIN || errnoException.errno == EWOULDBLOCK) {
108 throw new SocketTimeoutException(errnoException);
110 throw errnoException.rethrowAsSocketException();
282 } catch (ErrnoException errnoException) {
283 throw errnoException.rethrowAsSocketException()
    [all...]
NetworkInterface.java 32 import libcore.io.ErrnoException;
174 } catch (ErrnoException errnoException) {
175 if (errnoException.errno != EADDRNOTAVAIL) {
178 throw rethrowAsSocketException(errnoException);
DatagramSocket.java 23 import libcore.io.ErrnoException;
305 } catch (ErrnoException errnoException) {
306 throw errnoException.rethrowAsSocketException();
PlainDatagramSocketImpl.java 31 import libcore.io.ErrnoException;
217 } catch (ErrnoException errnoException) {
218 throw new AssertionError(errnoException);
  /libcore/luni/src/main/java/java/lang/
ProcessManager.java 31 import libcore.io.ErrnoException;
101 } catch (ErrnoException errnoException) {
102 if (errnoException.errno == ECHILD) {
108 throw new AssertionError(errnoException);
258 } catch (ErrnoException e) {
  /libcore/luni/src/main/java/libcore/util/
ZoneInfoDB.java 30 import libcore.io.ErrnoException;
108 } catch (ErrnoException errnoException) {
109 throw new AssertionError(errnoException);
135 private static void readIndex(MemoryMappedFile mappedFile) throws ErrnoException, IOException {

Completed in 550 milliseconds