summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'aidl/android/net/wifi/IWifiScannerImpl.aidl')
-rw-r--r--aidl/android/net/wifi/IWifiScannerImpl.aidl6
1 files changed, 5 insertions, 1 deletions
diff --git a/aidl/android/net/wifi/IWifiScannerImpl.aidl b/aidl/android/net/wifi/IWifiScannerImpl.aidl
index da0ca2d..e83b79c 100644
--- a/aidl/android/net/wifi/IWifiScannerImpl.aidl
+++ b/aidl/android/net/wifi/IWifiScannerImpl.aidl
@@ -35,9 +35,13 @@ interface IWifiScannerImpl {
35 // Returrns null on failure. 35 // Returrns null on failure.
36 @nullable int[] getAvailableDFSChannels(); 36 @nullable int[] getAvailableDFSChannels();
37 37
38 // Get the latest scan results from kernel. 38 // Get the latest single scan results from kernel.
39 NativeScanResult[] getScanResults(); 39 NativeScanResult[] getScanResults();
40 40
41 // Get the latest pno scan results from the interface which has most recently
42 // completed disconnected mode PNO scans
43 NativeScanResult[] getPnoScanResults();
44
41 // Request a single scan using a SingleScanSettings parcelable object. 45 // Request a single scan using a SingleScanSettings parcelable object.
42 boolean scan(in SingleScanSettings scanSettings); 46 boolean scan(in SingleScanSettings scanSettings);
43 47