Searched refs:errnoException (Results 1 - 20 of 20) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DIoBridge.java69 } catch (ErrnoException errnoException) {
70 if (errnoException.errno == ENOTTY) {
74 throw errnoException.rethrowAsIOException();
98 } catch (ErrnoException errnoException) {
99 throw new BindException(errnoException.getMessage(), errnoException);
123 } catch (ErrnoException errnoException) {
124 throw new ConnectException(connectDetail(inetAddress, port, timeoutMs, errnoException), errnoException);
157 } catch (ErrnoException errnoException) {
530 maybeThrowAfterSendto(boolean isDatagram, ErrnoException errnoException) argument
583 maybeThrowAfterRecvfrom(boolean isRead, boolean isConnected, ErrnoException errnoException) argument
[all...]
H A DIoUtils.java45 } catch (ErrnoException errnoException) {
46 throw errnoException.rethrowAsIOException();
98 } catch (ErrnoException errnoException) {
99 throw errnoException.rethrowAsIOException();
166 } catch (ErrnoException errnoException) {
/libcore/luni/src/main/java/java/io/
H A DFileDescriptor.java76 } catch (ErrnoException errnoException) {
77 SyncFailedException sfe = new SyncFailedException(errnoException.getMessage());
78 sfe.initCause(errnoException);
H A DFile.java282 } catch (ErrnoException errnoException) {
313 } catch (ErrnoException errnoException) {
523 } catch (ErrnoException errnoException) {
538 } catch (ErrnoException errnoException) {
570 } catch (ErrnoException errnoException) {
708 } catch (ErrnoException errnoException) {
723 } catch (ErrnoException errnoException) {
865 } catch (ErrnoException errnoException) {
898 } catch (ErrnoException errnoException) {
899 if (errnoException
[all...]
H A DFileInputStream.java190 } catch (ErrnoException errnoException) {
191 if (errnoException.errno == ESPIPE) {
195 throw errnoException.rethrowAsIOException();
H A DRandomAccessFile.java226 } catch (ErrnoException errnoException) {
227 throw errnoException.rethrowAsIOException();
241 } catch (ErrnoException errnoException) {
242 throw errnoException.rethrowAsIOException();
604 } catch (ErrnoException errnoException) {
605 throw errnoException.rethrowAsIOException();
629 } catch (ErrnoException errnoException) {
630 throw errnoException.rethrowAsIOException();
/libcore/luni/src/main/java/java/nio/
H A DFileChannelImpl.java122 } catch (ErrnoException errnoException) {
123 throw errnoException.rethrowAsIOException();
198 } catch (ErrnoException errnoException) {
199 throw errnoException.rethrowAsIOException();
214 } catch (ErrnoException errnoException) {
215 throw errnoException.rethrowAsIOException();
265 } catch (ErrnoException errnoException) {
266 throw errnoException.rethrowAsIOException();
277 } catch (ErrnoException errnoException) {
278 throw errnoException
[all...]
H A DMappedByteBuffer.java77 } catch (ErrnoException errnoException) {
110 } catch (ErrnoException errnoException) {
113 throw new AssertionError(errnoException);
H A DIoVec.java83 } catch (ErrnoException errnoException) {
84 throw errnoException.rethrowAsIOException();
H A DPipeImpl.java47 } catch (ErrnoException errnoException) {
48 throw errnoException.rethrowAsIOException();
H A DMemoryBlock.java46 } catch (ErrnoException errnoException) {
49 throw new AssertionError(errnoException);
124 } catch (ErrnoException errnoException) {
125 throw errnoException.rethrowAsIOException();
H A DSelectorImpl.java102 } catch (ErrnoException errnoException) {
103 throw errnoException.rethrowAsIOException();
184 } catch (ErrnoException errnoException) {
185 throw errnoException.rethrowAsIOException();
H A DDatagramChannelImpl.java121 } catch (ErrnoException errnoException) {
122 throw new AssertionError(errnoException);
195 } catch (ErrnoException errnoException) {
196 throw errnoException.rethrowAsIOException();
H A DSocketChannelImpl.java152 } catch (ErrnoException errnoException) {
153 throw new AssertionError(errnoException);
/libcore/luni/src/main/java/java/net/
H A DPlainSocketImpl.java97 } catch (ErrnoException errnoException) {
98 if (errnoException.errno == EAGAIN) {
99 throw new SocketTimeoutException(errnoException);
101 throw errnoException.rethrowAsSocketException();
279 } catch (ErrnoException errnoException) {
280 throw errnoException.rethrowAsSocketException();
360 } catch (ErrnoException errnoException) {
361 throw errnoException.rethrowAsSocketException();
372 } catch (ErrnoException errnoException) {
373 throw errnoException
[all...]
H A DNetworkInterface.java204 } catch (ErrnoException errnoException) {
205 if (errnoException.errno != EADDRNOTAVAIL) {
208 throw rethrowAsSocketException(errnoException);
H A DPlainDatagramSocketImpl.java227 } catch (ErrnoException errnoException) {
228 throw new AssertionError(errnoException);
H A DDatagramSocket.java323 } catch (ErrnoException errnoException) {
324 throw errnoException.rethrowAsSocketException();
/libcore/luni/src/main/java/java/lang/
H A DProcessManager.java101 } catch (ErrnoException errnoException) {
102 if (errnoException.errno == ECHILD) {
108 throw new AssertionError(errnoException);
/libcore/luni/src/main/java/libcore/util/
H A DZoneInfoDB.java113 } catch (ErrnoException errnoException) {

Completed in 5778 milliseconds