Searched defs:hints (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/native/
H A DPortability.h29 const struct addrinfo* hints, unsigned /*netid*/, unsigned /*mark*/, struct addrinfo** res) {
30 return getaddrinfo(hostname, servname, hints, res);
28 android_getaddrinfofornet(const char* hostname, const char* servname, const struct addrinfo* hints, unsigned , unsigned , struct addrinfo** res) argument
H A Dlibcore_io_Posix.cpp961 addrinfo hints; local
962 memset(&hints, 0, sizeof(hints));
963 hints.ai_flags = env->GetIntField(javaHints, flagsFid);
964 hints.ai_family = env->GetIntField(javaHints, familyFid);
965 hints.ai_socktype = env->GetIntField(javaHints, socktypeFid);
966 hints.ai_protocol = env->GetIntField(javaHints, protocolFid);
970 int rc = android_getaddrinfofornet(node.c_str(), NULL, &hints, netId, 0, &addressList);
/libcore/luni/src/main/java/android/system/
H A DOs.java56 /** @hide */ public static InetAddress[] android_getaddrinfo(String node, StructAddrinfo hints, int netId) throws GaiException { return Libcore.os.android_getaddrinfo(node, hints, netId); } argument
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java55 public InetAddress[] android_getaddrinfo(String node, StructAddrinfo hints, int netId) throws GaiException { return os.android_getaddrinfo(node, hints, netId); } argument
H A DOs.java46 public InetAddress[] android_getaddrinfo(String node, StructAddrinfo hints, int netId) throws GaiException; argument
H A DPosix.java49 public native InetAddress[] android_getaddrinfo(String node, StructAddrinfo hints, int netId) throws GaiException; argument

Completed in 592 milliseconds