Searched defs:ifs (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/java/net/ipv6tests/
H A DTests.java167 Enumeration ifs = NetworkInterface.getNetworkInterfaces();
169 while (ifs.hasMoreElements()) {
171 ifs.nextElement();
207 Enumeration ifs; field in class:Tests.AddrEnum
220 ifs = NetworkInterface.getNetworkInterfaces();
264 if (ifs != null) {
265 while (ifs.hasMoreElements()) {
266 NetworkInterface nic = (NetworkInterface)ifs.nextElement();
/openjdk7/jdk/src/windows/native/java/net/
H A DNetworkInterface_winXP.c417 static jobject createNetworkInterfaceXP(JNIEnv *env, netif *ifs) argument
424 int netaddrCount=ifs->naddrs;
425 netaddr *netaddrP=ifs->addrs;
432 name = (*env)->NewStringUTF(env, ifs->name);
433 if (ifs->dNameIsUnicode) {
434 displayName = (*env)->NewString(env, (PWCHAR)ifs->displayName,
435 (jsize)wcslen ((PWCHAR)ifs->displayName));
437 displayName = (*env)->NewStringUTF(env, ifs->displayName);
444 (*env)->SetIntField(env, netifObj, ni_indexID, ifs->index);
451 netaddrCount = enumAddresses_win(env, ifs,
[all...]
H A DNetworkInterface.c502 (JNIEnv *env, netif *ifs, int netaddrCount, netaddr *netaddrP)
515 name = (*env)->NewStringUTF(env, ifs->name);
516 if (ifs->dNameIsUnicode) {
517 displayName = (*env)->NewString(env, (PWCHAR)ifs->displayName,
518 (jsize)wcslen ((PWCHAR)ifs->displayName));
520 displayName = (*env)->NewStringUTF(env, ifs->displayName);
527 (*env)->SetIntField(env, netifObj, ni_indexID, ifs->index);
534 netaddrCount = enumAddresses_win(env, ifs, &netaddrP);
501 createNetworkInterface(JNIEnv *env, netif *ifs, int netaddrCount, netaddr *netaddrP) argument
/openjdk7/jdk/src/solaris/native/java/net/
H A DNetworkInterface.c127 static jobject createNetworkInterface(JNIEnv *env, netif *ifs);
131 static netif *enumIPv4Interfaces(JNIEnv *env, int sock, netif *ifs);
134 static netif *enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs);
137 static netif *addif(JNIEnv *env, int sock, const char * if_name, netif *ifs, struct sockaddr* ifr_addrP, int family, short prefix);
138 static void freeif(netif *ifs);
155 static netif *enumIPvXInterfaces(JNIEnv *env, int sock, netif *ifs, int family);
212 netif *ifs, *curr; local
217 ifs = enumInterfaces(env);
218 if (ifs == NULL) {
227 curr = ifs;
256 netif *ifs, *curr; local
296 netif *ifs, *curr; local
386 netif *ifs, *curr; local
592 createNetworkInterface(JNIEnv *env, netif *ifs) argument
748 netif *ifs; local
812 freeif(netif *ifs) argument
837 addif(JNIEnv *env, int sock, const char * if_name, netif *ifs, struct sockaddr* ifr_addrP, int family, short prefix) argument
1068 enumIPv4Interfaces(JNIEnv *env, int sock, netif *ifs) argument
1127 enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) argument
1368 enumIPv4Interfaces(JNIEnv *env, int sock, netif *ifs) argument
1373 enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) argument
1382 enumIPvXInterfaces(JNIEnv *env, int sock, netif *ifs, int family) argument
1728 enumIPv4Interfaces(JNIEnv *env, int sock, netif *ifs) argument
1802 enumIPv6Interfaces(JNIEnv *env, int sock, netif *ifs) argument
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp3927 void append_interfaces(objArrayHandle result, int& index, objArrayOop ifs) { argument
3929 for (int i = 0; i < ifs->length(); i++) {
3930 oop e = ifs->obj_at(i);

Completed in 603 milliseconds