HomeSort by relevance Sort by last modified time
    Searched refs:wifiConnected (Results 1 - 7 of 7) sorted by null

  /developers/build/prebuilts/gradle/BasicNetworking/Application/src/main/java/com/example/android/basicnetworking/
MainActivity.java 45 private static boolean wifiConnected = false;
99 wifiConnected = activeInfo.getType() == ConnectivityManager.TYPE_WIFI;
101 if(wifiConnected) {
  /developers/samples/android/connectivity/network/BasicNetworking/Application/src/main/java/com/example/android/basicnetworking/
MainActivity.java 45 private static boolean wifiConnected = false;
99 wifiConnected = activeInfo.getType() == ConnectivityManager.TYPE_WIFI;
101 if(wifiConnected) {
  /development/samples/browseable/BasicNetworking/src/com.example.android.basicnetworking/
MainActivity.java 45 private static boolean wifiConnected = false;
99 wifiConnected = activeInfo.getType() == ConnectivityManager.TYPE_WIFI;
101 if(wifiConnected) {
  /development/samples/training/network-usage/src/com/example/android/networkusage/
NetworkActivity.java 71 private static boolean wifiConnected = false;
126 // Checks the network connection and sets the wifiConnected and mobileConnected
134 wifiConnected = activeInfo.getType() == ConnectivityManager.TYPE_WIFI;
137 wifiConnected = false;
147 if (((sPref.equals(ANY)) && (wifiConnected || mobileConnected))
148 || ((sPref.equals(WIFI)) && (wifiConnected))) {
282 * If it is, it checks whether Wi-Fi is connected and sets the wifiConnected flag in the
  /frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
NetworkActivity.java 71 private static boolean wifiConnected = false;
126 // Checks the network connection and sets the wifiConnected and mobileConnected
134 wifiConnected = activeInfo.getType() == ConnectivityManager.TYPE_WIFI;
137 wifiConnected = false;
147 if (((sPref.equals(ANY)) && (wifiConnected || mobileConnected))
148 || ((sPref.equals(WIFI)) && (wifiConnected))) {
282 * If it is, it checks whether Wi-Fi is connected and sets the wifiConnected flag in the
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSetupActivity.java 117 boolean wifiConnected = connectivity != null &&
119 mWifiConnected = wifiConnected;
120 return wifiConnected;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
WifiTile.java 136 boolean wifiConnected = cb.enabled && (cb.wifiSignalIconId > 0) && (cb.enabledDesc != null);
144 state.connected = wifiConnected;
154 } else if (wifiConnected) {
169 if (wifiConnected) {

Completed in 2715 milliseconds