OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isUp
(Results
1 - 5
of
5
) sorted by null
/device/generic/goldfish/dhcp/client/
interface.cpp
172
bool
isUp
= (request.ifr_flags & IFF_UP) != 0;
173
if (
isUp
!= shouldBeUp) {
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
UnixNetworkInterfaceTest.java
34
* @tests java.net.NetworkInterface#
isUp
()
41
boolean up = netif.
isUp
();
48
assertEquals(name + " up should be " + !up, !up, netif.
isUp
());
53
assertEquals(name + " up should be " + up, up, netif.
isUp
());
/external/sl4a/Utils/src/com/googlecode/android_scripting/
SimpleServer.java
146
if (!netint.isLoopback() || !netint.
isUp
()) { // Ignore if localhost or not active
176
if (netint.isLoopback() || !netint.
isUp
()) { // Ignore if localhost or not active
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
CalendarCalc.java
420
public void dateFieldChanged(boolean
isUp
) {
431
c.add(field,
isUp
? 1 : -1);
433
c.roll(field,
isUp
);
/device/generic/goldfish/ril/
reference-ril.c
408
bool
isUp
= (request.ifr_flags & IFF_UP);
409
if ((state == kInterfaceUp &&
isUp
) || (state == kInterfaceDown && !
isUp
)) {
[
all
...]
Completed in 125 milliseconds