Home
last modified time | relevance | path

Searched refs:nativeResults (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DScanResults.java145 ScanDetail... nativeResults) { in create() argument
146 return new ScanResults(id, bandScanned, -1, nativeResults); in create()
155 ScanDetail... nativeResults) { in createOverflowing() argument
156 return new ScanResults(id, bandScanned, maxResults, nativeResults); in createOverflowing()
159 private ScanResults(int id, int bandScanned, int maxResults, ScanDetail... nativeResults) { in ScanResults() argument
160 mScanResults = new ScanResult[nativeResults.length]; in ScanResults()
161 for (int i = 0; i < nativeResults.length; ++i) { in ScanResults()
162 mScanDetails.add(nativeResults[i]); in ScanResults()
163 mScanResults[i] = nativeResults[i].getScanResult(); in ScanResults()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWificondControl.java573 NativeScanResult[] nativeResults; in getScanResults() local
575 nativeResults = scannerImpl.getScanResults(); in getScanResults()
577 nativeResults = scannerImpl.getPnoScanResults(); in getScanResults()
579 for (NativeScanResult result : nativeResults) { in getScanResults()