OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:errnoException
(Results
1 - 14
of
14
) 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
) {
530
} catch (
ErrnoException
errnoException
) {
545
} catch (
ErrnoException
errnoException
) {
577
} 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();
602
} catch (
ErrnoException
errnoException
) {
603
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();
323
} catch (
ErrnoException
ignored) {
DatagramChannelImpl.java
39
import libcore.io.
ErrnoException
;
150
} catch (
ErrnoException
errnoException
) {
151
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
45
} catch (
ErrnoException
errnoException
) {
46
throw
errnoException
.rethrowAsIOException();
98
} catch (
ErrnoException
errnoException
) {
99
throw
errnoException
.rethrowAsIOException();
166
} catch (
ErrnoException
errnoException
) {
222
} catch (
ErrnoException
exception) {
254
} catch (
ErrnoException
e)
[
all
...]
/libcore/luni/src/main/java/java/net/
DatagramSocket.java
24
import libcore.io.
ErrnoException
;
299
} catch (
ErrnoException
errnoException
) {
300
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/crypto/src/main/java/org/conscrypt/
OpenSSLSocketImpl.java
48
import libcore.io.
ErrnoException
;
[
all
...]
Completed in 987 milliseconds