HomeSort by relevance Sort by last modified time
    Searched full:netinfo (Results 1 - 11 of 11) sorted by null

  /cts/tests/tests/net/src/android/net/cts/
NetworkInfoTest.java 40 for (NetworkInfo netInfo: ni) {
41 switch (netInfo.getType()) {
43 assertNetworkInfo(netInfo, MOBILE_TYPE_NAME);
46 assertNetworkInfo(netInfo, WIFI_TYPE_NAME);
55 private void assertNetworkInfo(NetworkInfo netInfo, String expectedTypeName) {
56 assertEquals(expectedTypeName.compareToIgnoreCase(netInfo.getTypeName()), 0);
57 if(netInfo.isConnectedOrConnecting()) {
58 assertTrue(netInfo.isAvailable());
59 if (State.CONNECTED == netInfo.getState()) {
60 assertTrue(netInfo.isConnected())
    [all...]
  /frameworks/base/core/java/android/net/
NetworkInfo.java 475 NetworkInfo netInfo = new NetworkInfo(netType, subtype, typeName, subtypeName);
476 netInfo.mState = State.valueOf(in.readString());
477 netInfo.mDetailedState = DetailedState.valueOf(in.readString());
478 netInfo.mIsFailover = in.readInt() != 0;
479 netInfo.mIsAvailable = in.readInt() != 0;
480 netInfo.mIsRoaming = in.readInt() != 0;
481 netInfo.mIsConnectedToProvisioningNetwork = in.readInt() != 0;
482 netInfo.mReason = in.readString();
483 netInfo.mExtraInfo = in.readString();
484 return netInfo;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/protocols/
routed.h 45 struct netinfo { struct
55 struct netinfo ru_nets[1]; /* variable length... */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/protocols/
routed.h 45 struct netinfo { struct
55 struct netinfo ru_nets[1]; /* variable length... */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/protocols/
routed.h 45 struct netinfo { struct
55 struct netinfo ru_nets[1]; /* variable length... */
  /frameworks/base/services/java/com/android/server/
NetworkTimeUpdateService.java 254 final NetworkInfo netInfo = connManager.getActiveNetworkInfo();
255 if (netInfo != null) {
257 if (netInfo.getState() == NetworkInfo.State.CONNECTED &&
258 (netInfo.getType() == ConnectivityManager.TYPE_WIFI ||
259 netInfo.getType() == ConnectivityManager.TYPE_ETHERNET) ) {
ConnectivityService.java     [all...]
  /external/chromium_org/net/base/
network_change_notifier.h 36 // http://www.w3.org/TR/netinfo-api.
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
winbatch.php 111 'ObjectCollectionClose', 'ObjectClose', 'ObjectAccess', 'Num2Char', 'NetInfo', 'MsgTextGet', 'MousePlay', 'MouseMove', 'MouseInfo',
    [all...]
  /frameworks/base/services/java/com/android/server/net/
NetworkPolicyManagerService.java 574 final NetworkInfo netInfo = intent.getParcelableExtra(EXTRA_NETWORK_INFO);
575 if (!netInfo.isConnected()) return;
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
wlioctl.h 3910 wl_pfn_net_info_t netinfo[1]; member in struct:wl_pfn_scanresults
    [all...]

Completed in 1480 milliseconds