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

/libcore/ojluni/src/main/java/java/net/
H A DNetworkInterface.java51 private boolean virtual = false; field in class:NetworkInterface
176 * Get an Enumeration with all the subinterfaces (also known as virtual
212 * (non virtual) interface or has no parent.
455 * Returns whether this interface is a virtual interface (also called
461 * can be several virtual interfaces attached to a single physical
464 * @return <code>true</code> if this interface is a virtual interface.
468 return virtual;
/libcore/ojluni/src/main/native/
H A DNetworkInterface.c67 char virtual; member in struct:_netif
136 ni_virutalID = (*env)->GetFieldID(env, ni_class, "virtual", "Z");
515 (*env)->SetBooleanField(env, netifObj, ni_virutalID, ifs->virtual ? JNI_TRUE : JNI_FALSE);
616 * See if there is any virtual interface attached to this one.
829 * Deal with virtual interface with colon notaion e.g. eth0:1
834 * This is a virtual interface. If we are able to access the parent
841 // We are a virtual interface with no parent.
877 currif->virtual = isVirtual;
919 * Let's deal with the virtual interface now.
941 currif->virtual
[all...]

Completed in 77 milliseconds