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

/libcore/ojluni/src/main/java/java/net/
H A DInet6Address.java146 * zone, it is possible to append a zone identifier (or <i>scope_id</i>) to an IPv6 address.
148 * The general format for specifying the <i>scope_id</i> is the following:
149 * <p><blockquote><i>IPv6-address</i>%<i>scope_id</i></blockquote>
151 * The <i>scope_id</i> refers to an interface on the local system, and it can be specified
163 * Note also, that the numeric <i>scope_id</i> can be retrieved from Inet6Address instances returned from the
188 * scope_id. The scope specified when the object is created. If the object is created
189 * with an interface name, then the scope_id is not determined until the time it is needed.
191 private int scope_id = 0; field in class:Inet6Address
194 * This will be set to true when the scope_id field contains a valid
195 * integer scope_id
223 Inet6Address(String hostName, byte addr[], int scope_id) argument
300 getByAddress(String host, byte[] addr, int scope_id) argument
[all...]
/libcore/luni/src/main/native/
H A DNetworkUtilities.cpp52 int scope_id = 0; local
63 scope_id = sin6.sin6_scope_id;
88 NULL, byteArray.get(), scope_id);
143 static jfieldID scopeFid = env->GetFieldID(JniConstants::inet6AddressClass, "scope_id", "I");
/libcore/ojluni/src/main/native/
H A Dnet_util_md.c530 * and override the scope_id field to use the relevant value for "lo"
639 /* now find the scope_id for "lo" */
812 // was constructed with a specific scope_id or NetworkInterface).
815 int scope_id = (int)(*env)->GetIntField(env, iaObj, ia6_scopeidID); local
816 if (scope_id > 0) {
817 him6->sin6_scope_id = scope_id;

Completed in 153 milliseconds