HomeSort by relevance Sort by last modified time
    Searched defs:isReachable (Results 26 - 50 of 370) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/Analysis/Analyses/
Consumed.h 172 bool isReachable() const { return Reachable; }
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InetAddressTest.java 293 assertTrue(ia.isReachable(10000));
296 ia.isReachable(-1);
309 assertTrue(ia.isReachable(null, 0, 10000));
312 ia.isReachable(null, -1, 10000);
318 ia.isReachable(null, 0, -1);
324 ia.isReachable(null, -1, -1);
332 assertFalse(ia.isReachable(1000));
333 assertFalse(ia.isReachable(null, 0, 1000));
341 ia.isReachable(netif, 10, 1000);
387 assertTrue(destAddress.isReachable(loopbackInterface, TTL, TIME_OUT))
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
InetAddressTest.java 238 deserialized.isReachable(500);
241 deserialized.isReachable(nif, 20, 500);
260 assertFalse(inetAddress.isReachable(netIf, 256, 500));
276 assertFalse(blackholeAddress.isReachable(1000));
  /cts/tests/tests/location/src/android/location/cts/
EmergencyCallWifiTest.java 79 boolean isReachable =
80 isReachable(GOOGLE_URL, WEB_PORT, (int)INTERNET_CONNECTION_TIMEOUT);
82 + " Please make sure device has the internet connection", isReachable);
85 private static boolean isReachable(String addr, int openPort, int timeOutMillis) {
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 76 bool isReachable(const CFGBlock *block) const {
91 llvm::BitVector::reference isReachable = reachable[block->getBlockID()];
92 if (isReachable)
94 isReachable = true;
176 if (!reachableCode->isReachable(currentBlock))
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
BlockFrequencyImpl.h 135 /// isReachable - Returns if BB block is reachable from the entry.
137 bool isReachable(BlockT *BB) {
144 assert(isReachable(Src));
145 assert(isReachable(Dst));
199 if (isReachable(Pred) && isBackedge(Pred, BB)) {
243 if (isReachable(Pred) && isBackedge(Pred, Head)) {
295 if (isReachable(Pred) && isBackedge(Pred, BB)
  /libcore/ojluni/src/main/java/java/net/
Inet6AddressImpl.java 55 // http://b/36933260 Implement root-less ICMP for isReachable()
175 public boolean isReachable(InetAddress addr, int timeout, NetworkInterface netif, int ttl) throws IOException {
202 // Android-changed: http://b/36933260 Implement root-less ICMP for isReachable().
217 // BEGIN Android-added: http://b/36933260 Implement root-less ICMP for isReachable().
302 // END Android-added: http://b/36933260 Implement root-less ICMP for isReachable().
InetAddress.java 458 // The sole implementation, Inet6AddressImpl.isReachable(), tries ICMP ECHO REQUESTs before
481 public boolean isReachable(int timeout) throws IOException {
482 return isReachable(null, 0 , timeout);
486 // The sole implementation, Inet6AddressImpl.isReachable(), tries ICMP ECHO REQUESTs before
520 public boolean isReachable(NetworkInterface netif, int ttl,
527 return impl.isReachable(this, timeout, netif, ttl);
    [all...]
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
WaltTcpConnection.java 244 return probeThread.isReachable;
248 public boolean isReachable = false;
257 isReachable = true;
  /frameworks/base/tests/net/java/android/net/
LinkPropertiesTest.java 598 assertFalse(v4lp.isReachable(DNS1));
599 assertFalse(v4lp.isReachable(DNS2));
605 assertFalse(v4lp.isReachable(DNS1));
606 assertFalse(v4lp.isReachable(DNS2));
611 assertTrue(v4lp.isReachable(DNS1));
612 assertFalse(v4lp.isReachable(DNS2));
616 assertTrue(v4lp.isReachable(DNS1));
617 assertTrue(v4lp.isReachable(DNS2));
623 assertFalse(v6lp.isReachable(kLinkLocalDns));
624 assertFalse(v6lp.isReachable(kLinkLocalDnsWithScope))
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 433 AdjacentBlock(CFGBlock *B, bool IsReachable);
463 bool isReachable() const {
    [all...]
  /frameworks/base/core/java/android/net/
LinkProperties.java     [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
AccessPoint.java 374 if (isReachable() && !other.isReachable()) return -1;
375 if (!isReachable() && other.isReachable()) return 1;
649 * <p>Use {@#isReachable()} to determine if an AccessPoint is in range, as this method will
875 } else if (!isReachable()) { // Wifi out of range
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/
CFG.h 434 AdjacentBlock(CFGBlock *B, bool IsReachable);
464 bool isReachable() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Analysis/
CFG.h 434 AdjacentBlock(CFGBlock *B, bool IsReachable);
464 bool isReachable() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Analysis/
CFG.h 434 AdjacentBlock(CFGBlock *B, bool IsReachable);
464 bool isReachable() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Analysis/
CFG.h 481 AdjacentBlock(CFGBlock *B, bool IsReachable);
511 bool isReachable() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Analysis/
CFG.h 481 AdjacentBlock(CFGBlock *B, bool IsReachable);
511 bool isReachable() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Analysis/
CFG.h 481 AdjacentBlock(CFGBlock *B, bool IsReachable);
511 bool isReachable() const {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Analysis/
CFG.h 481 AdjacentBlock(CFGBlock *B, bool IsReachable);
511 bool isReachable() const {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/
CFG.h 434 AdjacentBlock(CFGBlock *B, bool IsReachable);
464 bool isReachable() const {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Analysis/
CFG.h 434 AdjacentBlock(CFGBlock *B, bool IsReachable);
464 bool isReachable() const {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Analysis/
CFG.h 434 AdjacentBlock(CFGBlock *B, bool IsReachable);
464 bool isReachable() const {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Analysis/
CFG.h 481 AdjacentBlock(CFGBlock *B, bool IsReachable);
511 bool isReachable() const {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Analysis/
CFG.h 481 AdjacentBlock(CFGBlock *B, bool IsReachable);
511 bool isReachable() const {
    [all...]

Completed in 852 milliseconds

12 3 4 5 6 7 8 91011>>