Home
last modified time | relevance | path

Searched refs:scope_id (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/net/
DInet6Address.java191 private int scope_id = 0; field in Inet6Address
223 Inet6Address(String hostName, byte addr[], int scope_id) { in Inet6Address() argument
230 if (scope_id > 0) { in Inet6Address()
231 this.scope_id = scope_id; in Inet6Address()
300 public static Inet6Address getByAddress(String host, byte[] addr, int scope_id) in getByAddress() argument
309 return new Inet6Address(host, addr, scope_id); in getByAddress()
336 scope_id = deriveNumericScope (nif); in initif()
371 return ia6_addr.scope_id; in deriveNumericScope()
399 return ia6_addr.scope_id; in deriveNumericScope()
430 scope_id = 0; in readObject()
[all …]
/libcore/luni/src/main/native/
DNetworkUtilities.cpp52 int scope_id = 0; in sockaddrToInetAddress() local
63 scope_id = sin6.sin6_scope_id; in sockaddrToInetAddress()
88 NULL, byteArray.get(), scope_id); in sockaddrToInetAddress()
/libcore/ojluni/src/main/native/
Dnet_util_md.c815 int scope_id = (int)(*env)->GetIntField(env, iaObj, ia6_scopeidID); in NET_InetAddressToSockaddr() local
816 if (scope_id > 0) { in NET_InetAddressToSockaddr()
817 him6->sin6_scope_id = scope_id; in NET_InetAddressToSockaddr()