OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wifiScanResults
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
TrackerService.java
391
List<ScanResult>
wifiScanResults
= wifiManager.getScanResults();
393
(
wifiScanResults
== null ? "0" :
wifiScanResults
.size());
/development/apps/Development/src/com/android/development/
Connectivity.java
230
List<ScanResult>
wifiScanResults
= mWm.getScanResults();
231
if (
wifiScanResults
!= null) {
232
mTotalScanCount +=
wifiScanResults
.size();
233
mScanResults.setText("Current scan = " + Long.toString(
wifiScanResults
.size()));
235
Log.d(TAG, "Scan: Results = " +
wifiScanResults
.size());
Completed in 127 milliseconds