OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:spref
(Results
1 - 4
of
4
) sorted by null
/development/samples/training/network-usage/src/com/example/android/networkusage/
NetworkActivity.java
78
public static String
sPref
= null;
104
sPref
= sharedPrefs.getString("listPref", "Wi-Fi");
147
if (((
sPref
.equals(ANY)) && (wifiConnected || mobileConnected))
148
|| ((
sPref
.equals(WIFI)) && (wifiConnected))) {
298
if (WIFI.equals(
sPref
) && networkInfo != null
308
} else if (ANY.equals(
sPref
) && networkInfo != null) {
/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
NetworkActivity.java
78
public static String
sPref
= null;
104
sPref
= sharedPrefs.getString("listPref", "Wi-Fi");
147
if (((
sPref
.equals(ANY)) && (wifiConnected || mobileConnected))
148
|| ((
sPref
.equals(WIFI)) && (wifiConnected))) {
298
if (WIFI.equals(
sPref
) && networkInfo != null
308
} else if (ANY.equals(
sPref
) && networkInfo != null) {
/frameworks/base/docs/html/training/basics/network-ops/
managing.jd
307
public static String
sPref
= null;
343
sPref
= sharedPrefs.getString("listPref", "Wi-Fi");
370
if (((
sPref
.equals(ANY)) && (wifiConnected || mobileConnected))
371
|| ((
sPref
.equals(WIFI)) && (wifiConnected))) {
424
if (WIFI.equals(
sPref
) && networkInfo != null && networkInfo.getType() == ConnectivityManager.TYPE_WIFI) {
433
} else if (ANY.equals(
sPref
) && networkInfo != null) {
xml.jd
409
public static String
sPref
= null;
416
if((
sPref
.equals(ANY)) && (wifiConnected || mobileConnected)) {
419
else if ((
sPref
.equals(WIFI)) && (wifiConnected)) {
Completed in 62 milliseconds