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

/openjdk7/jdk/src/solaris/native/java/net/
H A Dnet_util_md.c875 int cached_scope_id = 0, scope_id = 0; local
879 cached_scope_id = (int)(*env)->GetIntField(env, iaObj, ia6_cachedscopeidID);
883 if (!cached_scope_id) {
892 cached_scope_id = lo_scope_id;
893 (*env)->SetIntField(env, iaObj, ia6_cachedscopeidID, cached_scope_id);
901 cached_scope_id = getDefaultIPv6Interface( &(him6->sin6_addr) );
903 cached_scope_id = getLocalScopeID( (char *)&(him6->sin6_addr) );
904 if (cached_scope_id == 0) {
905 cached_scope_id = getDefaultIPv6Interface( &(him6->sin6_addr) );
908 (*env)->SetIntField(env, iaObj, ia6_cachedscopeidID, cached_scope_id);
[all...]
/openjdk7/jdk/src/windows/native/java/net/
H A Dnet_util_md.c857 jint cached_scope_id = 0; local
877 cached_scope_id = (jint)(*env)->GetIntField(env, iaObj, ia6_cachedscopeidID);
886 && (!scopeid && !cached_scope_id)) {
887 cached_scope_id = getDefaultIPv6Interface(env, him6);
888 (*env)->SetIntField(env, iaObj, ia6_cachedscopeidID, cached_scope_id);
890 him6->sin6_scope_id = scopeid != 0 ? scopeid : cached_scope_id;
/openjdk7/jdk/src/share/classes/java/net/
H A DInet6Address.java172 private transient int cached_scope_id = 0; field in class:Inet6Address

Completed in 44 milliseconds