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

  /libcore/luni/src/main/java/android/system/
GaiException.java 29 public final class GaiException extends RuntimeException {
40 public GaiException(String functionName, int error) {
48 public GaiException(String functionName, int error, Throwable cause) {
Os.java 56 /** @hide */ public static InetAddress[] android_getaddrinfo(String node, StructAddrinfo hints, int netId) throws GaiException { return Libcore.os.android_getaddrinfo(node, hints, netId); }
200 /** @hide */ public static String getnameinfo(InetAddress address, int flags) throws GaiException { return Libcore.os.getnameinfo(address, flags); }
  /libcore/ojluni/src/main/java/java/net/
Inet6AddressImpl.java 28 import android.system.GaiException;
129 } catch (GaiException gaiException) {
133 if (gaiException.getCause() instanceof ErrnoException) {
134 if (((ErrnoException) gaiException.getCause()).errno == EACCES) {
135 throw new SecurityException("Permission denied (missing INTERNET permission?)", gaiException);
139 String detailMessage = "Unable to resolve host \"" + host + "\": " + Libcore.os.gai_strerror(gaiException.error);
141 throw gaiException.rethrowAsUnknownHostException(detailMessage);
314 } catch (GaiException e) {
InetAddress.java 38 import android.system.GaiException;
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Os.java 20 import android.system.GaiException;
49 public InetAddress[] android_getaddrinfo(String node, StructAddrinfo hints, int netId) throws GaiException;
80 public String getnameinfo(InetAddress address, int flags) throws GaiException;
Linux.java 20 import android.system.GaiException;
52 public native InetAddress[] android_getaddrinfo(String node, StructAddrinfo hints, int netId) throws GaiException;
85 public native String getnameinfo(InetAddress address, int flags) throws GaiException;
ForwardingOs.java 20 import android.system.GaiException;
58 public InetAddress[] android_getaddrinfo(String node, StructAddrinfo hints, int netId) throws GaiException { return os.android_getaddrinfo(node, hints, netId); }
94 public String getnameinfo(InetAddress address, int flags) throws GaiException { return os.getnameinfo(address, flags); }
  /libcore/
non_openjdk_java_files.mk 3 luni/src/main/java/android/system/GaiException.java \
  /frameworks/base/
preloaded-classes     [all...]
compiled-classes-phone     [all...]

Completed in 1474 milliseconds