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

  /hardware/ti/wlan/wl1271/stad/src/Application/
roamingMngr_autoSM.c 292 scan_mngrResultStatus_e scanResult;
300 scanResult = scanMngr_startImmediateScan (pRoamingMngr->hScanMngr, TI_TRUE);
304 scanResult = scanMngr_startImmediateScan (pRoamingMngr->hScanMngr, TI_FALSE);
307 if (scanResult != SCAN_MRS_SCAN_RUNNING)
309 TRACE1(pRoamingMngr->hReport, REPORT_SEVERITY_INFORMATION, "roamingMngr_smInvokeScan, scanResult = %d\n", scanResult);
310 roamingMngr_immediateScanComplete(pRoamingMngr, scanResult);
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiStatusTest.java 20 import android.net.wifi.ScanResult;
266 List<ScanResult> list = mWifiManager.getScanResults();
271 final ScanResult scanResult = list.get(i);
273 if (scanResult == null) {
277 if (TextUtils.isEmpty(scanResult.SSID)) {
281 scanList.append(scanResult.SSID+" ");
  /frameworks/base/libs/androidfw/
Asset.cpp 183 bool scanResult;
208 scanResult = ZipUtils::examineGzip(fp, &method, &uncompressedLen,
212 if (!scanResult) {
  /build/tools/zipalign/
ZipFile.cpp 464 bool scanResult;
468 scanResult = ZipUtils::examineGzip(inputFp, &method, &uncompressedLen,
470 if (!scanResult || method != ZipEntry::kCompressDeflated) {
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.cpp 464 bool scanResult;
468 scanResult = ZipUtils::examineGzip(inputFp, &method, &uncompressedLen,
470 if (!scanResult || method != ZipEntry::kCompressDeflated) {
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiStateMachine.java 121 private List<ScanResult> mScanResults = new ArrayList<ScanResult>();
124 private final LruCache<String, ScanResult> mScanResultCache;
682 mScanResultCache = new LruCache<String, ScanResult>(SCAN_RESULT_CACHE_SIZE);
    [all...]
  /frameworks/base/services/java/com/android/server/
WifiService.java 34 import android.net.wifi.ScanResult;
838 * a list of {@link ScanResult} objects.
841 public List<ScanResult> getScanResults() {
848 return new ArrayList<ScanResult>();
    [all...]

Completed in 2345 milliseconds