Home
last modified time | relevance | path

Searched refs:getAllMatchingPasspointProfilesForScanResults (Results 1 – 10 of 10) sorted by relevance

/packages/modules/Wifi/framework/java/android/net/wifi/
DIWifiManager.aidl402 Map getAllMatchingPasspointProfilesForScanResults(in List<ScanResult> scanResult); in getAllMatchingPasspointProfilesForScanResults() method
DBaseWifiService.java932 getAllMatchingPasspointProfilesForScanResults(List<ScanResult> scanResults) { in getAllMatchingPasspointProfilesForScanResults() method in BaseWifiService
DWifiManager.java2391 mService.getAllMatchingPasspointProfilesForScanResults(scanResults); in getAllMatchingWifiConfigs()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/hotspot2/
DPasspointManagerTest.java1253 mManager.getAllMatchingPasspointProfilesForScanResults( in getAllMatchingFqdnsForScanResults()
1398 mManager.getAllMatchingPasspointProfilesForScanResults(null).size()); in getAllMatchingFqdnsForScanResultsWithNullScanResult()
1411 mManager.getAllMatchingPasspointProfilesForScanResults( in getAllMatchingFqdnsForScanResultsWithNullBSSID()
1425 mManager.getAllMatchingPasspointProfilesForScanResults( in ggetAllMatchingFqdnsForScanResultsWithInvalidBSSID()
1438 mManager.getAllMatchingPasspointProfilesForScanResults( in getAllMatchingFqdnsForScanResultsForNonPasspointAP()
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DPasspointManager.java1070 getAllMatchingPasspointProfilesForScanResults(List<ScanResult> scanResults) { in getAllMatchingPasspointProfilesForScanResults() method in PasspointManager
/packages/modules/Wifi/framework/tests/src/android/net/wifi/
DWifiManagerTest.java2372 when(mWifiService.getAllMatchingPasspointProfilesForScanResults( in testGetAllMatchingWifiConfigs()
2378 inOrder.verify(mWifiService).getAllMatchingPasspointProfilesForScanResults(any(List.class)); in testGetAllMatchingWifiConfigs()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiConnectivityManager.java896 .getAllMatchingPasspointProfilesForScanResults(passpointAp).keySet()); in updateUserDisabledList()
DWifiServiceImpl.java3634 getAllMatchingPasspointProfilesForScanResults(List<ScanResult> scanResults) { in getAllMatchingPasspointProfilesForScanResults() method in WifiServiceImpl
3646 () -> mPasspointManager.getAllMatchingPasspointProfilesForScanResults(scanResults), in getAllMatchingPasspointProfilesForScanResults()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiServiceImplTest.java4849 mWifiServiceImpl.getAllMatchingPasspointProfilesForScanResults(new ArrayList<>()); in testGetAllMatchingPasspointProfilesForScanResultsWithoutPermissions()
4862 mWifiServiceImpl.getAllMatchingPasspointProfilesForScanResults(createScanResultList()); in testGetAllMatchingPasspointProfilesForScanResultsWithPermissions()
4864 verify(mPasspointManager).getAllMatchingPasspointProfilesForScanResults(any()); in testGetAllMatchingPasspointProfilesForScanResultsWithPermissions()
4877 mWifiServiceImpl.getAllMatchingPasspointProfilesForScanResults(new ArrayList<>()); in testGetAllMatchingPasspointProfilesForScanResultsWithInvalidScanResult()
4879 verify(mPasspointManager, never()).getAllMatchingPasspointProfilesForScanResults(any()); in testGetAllMatchingPasspointProfilesForScanResultsWithInvalidScanResult()
DWifiConnectivityManagerTest.java4542 when(mPasspointManager.getAllMatchingPasspointProfilesForScanResults(any())) in verifyUserDisabledListUpdated()