Home
last modified time | relevance | path

Searched refs:isUp (Results 1 – 6 of 6) sorted by relevance

/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
DUnixNetworkInterfaceTest.java41 boolean up = netif.isUp(); in test_isUp()
48 assertEquals(name + " up should be " + !up, !up, netif.isUp()); in test_isUp()
53 assertEquals(name + " up should be " + up, up, netif.isUp()); in test_isUp()
/external/sl4a/Utils/src/com/googlecode/android_scripting/
DSimpleServer.java146 if (!netint.isLoopback() || !netint.isUp()) { // Ignore if localhost or not active in getPrivateInetAddress()
176 if (netint.isLoopback() || !netint.isUp()) { // Ignore if localhost or not active in getPublicInetAddress()
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
DCalendarCalc.java420 public void dateFieldChanged(boolean isUp) { in dateFieldChanged() argument
431 c.add(field, isUp ? 1 : -1); in dateFieldChanged()
433 c.roll(field, isUp); in dateFieldChanged()
/external/openthread/src/posix/platform/
Dnetif.cpp1114 bool isUp; in processNetifLinkEvent() local
1118 isUp = ((ifinfo->ifi_flags & IFF_UP) != 0); in processNetifLinkEvent()
1120 otLogInfoPlat("[netif] Host netif is %s", isUp ? "up" : "down"); in processNetifLinkEvent()
1125 VerifyOrExit(isUp == otIp6IsEnabled(aInstance), in processNetifLinkEvent()
1131 if (isUp != otIp6IsEnabled(aInstance)) in processNetifLinkEvent()
1133 SuccessOrExit(error = otIp6SetEnabled(aInstance, isUp)); in processNetifLinkEvent()
/external/mobly-snippet-lib/third_party/sl4a/src/main/java/com/google/android/mobly/snippet/rpc/
DSimpleServer.java142 if (!netint.isLoopback() || !netint.isUp()) { // Ignore if localhost or not active in getPrivateInetAddress()
/external/cronet/net/android/java/src/org/chromium/net/
DAndroidNetworkLibrary.java100 if (netIf.isUp() && !netIf.isLoopback()) return false; in haveOnlyLoopbackAddresses()