Searched defs:virtual (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/net/
H A DNetworkInterface.java51 private boolean virtual = false; field in class:NetworkInterface
177 * Get an Enumeration with all the subinterfaces (also known as virtual
213 * (non virtual) interface or has no parent.
466 * Returns whether this interface is a virtual interface (also called
472 * can be several virtual interfaces attached to a single physical
475 * @return <code>true</code> if this interface is a virtual interface.
479 return virtual;
/openjdk7/jdk/src/solaris/native/java/net/
H A DNetworkInterface.c87 char virtual; member in struct:_netif
180 ni_virutalID = (*env)->GetFieldID(env, ni_class, "virtual", "Z");
616 (*env)->SetBooleanField(env, netifObj, ni_virutalID, ifs->virtual ? JNI_TRUE : JNI_FALSE);
707 * See if there is any virtual interface attached to this one.
902 * Deal with virtual interface with colon notaion e.g. eth0:1
907 * This is a virtual interface. If we are able to access the parent
914 // We are a virtual interface with no parent.
950 currif->virtual = isVirtual;
964 * Let's deal with the virtual interface now.
986 currif->virtual
[all...]

Completed in 34 milliseconds