OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GaiException
(Results
1 - 5
of
5
) sorted by null
/libcore/luni/src/main/java/libcore/io/
GaiException.java
28
public final class
GaiException
extends RuntimeException {
32
public
GaiException
(String functionName, int error) {
37
public
GaiException
(String functionName, int error, Throwable cause) {
Os.java
46
public InetAddress[] getaddrinfo(String node, StructAddrinfo hints) throws
GaiException
;
52
public String getnameinfo(InetAddress address, int flags) throws
GaiException
;
Posix.java
49
public native InetAddress[] getaddrinfo(String node, StructAddrinfo hints) throws
GaiException
;
54
public native String getnameinfo(InetAddress address, int flags) throws
GaiException
;
ForwardingOs.java
55
public InetAddress[] getaddrinfo(String node, StructAddrinfo hints) throws
GaiException
{ return os.getaddrinfo(node, hints); }
60
public String getnameinfo(InetAddress address, int flags) throws
GaiException
{ return os.getnameinfo(address, flags); }
/libcore/luni/src/main/java/java/net/
InetAddress.java
37
import libcore.io.
GaiException
;
276
} catch (
GaiException
ignored) {
418
} catch (
GaiException
gaiException
) {
421
// if (
gaiException
.error == EAI_SYSTEM) {
424
String detailMessage = "Unable to resolve host \"" + host + "\": " + Libcore.os.gai_strerror(
gaiException
.error);
426
throw
gaiException
.rethrowAsUnknownHostException(detailMessage);
444
} catch (
GaiException
gaiException
) {
445
throw
gaiException
.rethrowAsUnknownHostException()
[
all
...]
Completed in 50 milliseconds