Home
last modified time | relevance | path

Searched refs:updateLinkedNetworks (Results 1 – 13 of 13) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiConfigManagerTest.java3028 mWifiConfigManager.updateLinkedNetworks(network1.networkId); in testNetworkLinkUsingGwMacAddress()
3029 mWifiConfigManager.updateLinkedNetworks(network2.networkId); in testNetworkLinkUsingGwMacAddress()
3030 mWifiConfigManager.updateLinkedNetworks(network3.networkId); in testNetworkLinkUsingGwMacAddress()
3095 mWifiConfigManager.updateLinkedNetworks(network1.networkId); in testNetworkLinkOnlyIfCredentialsMatch()
3096 mWifiConfigManager.updateLinkedNetworks(network2.networkId); in testNetworkLinkOnlyIfCredentialsMatch()
3097 mWifiConfigManager.updateLinkedNetworks(network3.networkId); in testNetworkLinkOnlyIfCredentialsMatch()
3160 mWifiConfigManager.updateLinkedNetworks(network1.networkId); in testNoNetworkLinkVrrpMacAddress()
3161 mWifiConfigManager.updateLinkedNetworks(network2.networkId); in testNoNetworkLinkVrrpMacAddress()
3162 mWifiConfigManager.updateLinkedNetworks(network3.networkId); in testNoNetworkLinkVrrpMacAddress()
3217 mWifiConfigManager.updateLinkedNetworks(network1.networkId); in testNetworkLinkUsingGwMacAddressWithPskAndSaeTypes()
[all …]
DSupplicantStaIfaceHalTest.java1116 when(mStaIfaceHalAidlMock.updateLinkedNetworks(anyString(), anyInt(), any(Map.class))) in testUpdateLinkedNetworks()
1118 assertTrue(mDut.updateLinkedNetworks(IFACE_NAME, NETWORK_ID, linkedConfigurations)); in testUpdateLinkedNetworks()
1119 verify(mStaIfaceHalAidlMock).updateLinkedNetworks( in testUpdateLinkedNetworks()
DSupplicantStaIfaceHalAidlImplTest.java551 assertFalse(mDut.updateLinkedNetworks( in testUpdateLinkedNetworks()
558 assertFalse(mDut.updateLinkedNetworks(WLAN0_IFACE_NAME, frameworkNetId + 1, null)); in testUpdateLinkedNetworks()
562 assertFalse(mDut.updateLinkedNetworks(WLAN0_IFACE_NAME, frameworkNetId, null)); in testUpdateLinkedNetworks()
568 assertFalse(mDut.updateLinkedNetworks( in testUpdateLinkedNetworks()
573 assertFalse(mDut.updateLinkedNetworks( in testUpdateLinkedNetworks()
590 assertTrue(mDut.updateLinkedNetworks( in testUpdateLinkedNetworks()
599 assertTrue(mDut.updateLinkedNetworks( in testUpdateLinkedNetworks()
3057 assertTrue(mDut.updateLinkedNetworks( in executeAndValidateRoamSequence()
DSupplicantStaIfaceHalHidlImplTest.java688 assertFalse(mDut.updateLinkedNetworks( in testUpdateLinkedNetworks()
695 assertFalse(mDut.updateLinkedNetworks(WLAN0_IFACE_NAME, frameworkNetId + 1, null)); in testUpdateLinkedNetworks()
699 assertFalse(mDut.updateLinkedNetworks(WLAN0_IFACE_NAME, frameworkNetId, null)); in testUpdateLinkedNetworks()
709 assertFalse(mDut.updateLinkedNetworks( in testUpdateLinkedNetworks()
719 assertFalse(mDut.updateLinkedNetworks( in testUpdateLinkedNetworks()
741 assertTrue(mDut.updateLinkedNetworks( in testUpdateLinkedNetworks()
757 assertTrue(mDut.updateLinkedNetworks( in testUpdateLinkedNetworks()
3372 assertTrue(mDut.updateLinkedNetworks( in executeAndValidateRoamSequence()
DWifiNativeTest.java1407 when(mStaIfaceHal.updateLinkedNetworks(any(), anyInt(), any())).thenReturn(true); in testUpdateLinkedNetworks()
1409 assertTrue(mWifiNative.updateLinkedNetworks(WIFI_IFACE_NAME, 0, null)); in testUpdateLinkedNetworks()
1410 verify(mStaIfaceHal).updateLinkedNetworks(WIFI_IFACE_NAME, 0, null); in testUpdateLinkedNetworks()
DClientModeImplTest.java9209 verify(mWifiConfigManager).updateLinkedNetworks(connectedConfig.networkId); in testNetworkRemovedUpdatesLinkedNetworks()
9211 verify(mWifiConfigManager, never()).updateLinkedNetworks(connectedConfig.networkId); in testNetworkRemovedUpdatesLinkedNetworks()
9261 verify(mWifiConfigManager).updateLinkedNetworks(connectedConfig.networkId); in testNetworkUpdatedUpdatesLinkedNetworks()
9318 when(mWifiNative.updateLinkedNetworks(any(), anyInt(), any())).thenReturn(true); in testNetworkValidationUpdatesLinkedNetworks()
9325 verify(mWifiConfigManager).updateLinkedNetworks(connectedConfig.networkId); in testNetworkValidationUpdatesLinkedNetworks()
9326 verify(mWifiNative).updateLinkedNetworks( in testNetworkValidationUpdatesLinkedNetworks()
9387 verify(mWifiConfigManager, never()).updateLinkedNetworks(connectedConfig.networkId); in testNonPskNetworkDoesNotUpdateLinkedNetworks()
9444 verify(mWifiConfigManager, never()).updateLinkedNetworks(connectedConfig.networkId); in testInvalidScanResultDoesNotUpdateLinkedNetworks()
9455 verify(mWifiConfigManager, never()).updateLinkedNetworks(connectedConfig.networkId); in testInvalidScanResultDoesNotUpdateLinkedNetworks()
9463 verify(mWifiConfigManager, never()).updateLinkedNetworks(connectedConfig.networkId); in testInvalidScanResultDoesNotUpdateLinkedNetworks()
[all …]
/packages/modules/Wifi/service/java/com/android/server/wifi/
DISupplicantStaIfaceHal.java715 boolean updateLinkedNetworks(@NonNull String ifaceName, int networkId, in updateLinkedNetworks() method
DSupplicantStaIfaceHal.java2236 public boolean updateLinkedNetworks(@NonNull String ifaceName, int networkId, in updateLinkedNetworks() method in SupplicantStaIfaceHal
2243 return mStaIfaceHal.updateLinkedNetworks(ifaceName, networkId, linkedConfigurations); in updateLinkedNetworks()
DClientModeImpl.java1236 updateLinkedNetworks(currentConfig); in onNetworkRemoved()
4943 updateLinkedNetworks(currentConfig); in processMessageImpl()
7504 updateLinkedNetworks(config); in processMessageImpl()
8679 private void updateLinkedNetworks(@NonNull WifiConfiguration config) { in updateLinkedNetworks() method in ClientModeImpl
8714 mWifiConfigManager.updateLinkedNetworks(config.networkId); in updateLinkedNetworks()
8718 if (!mWifiNative.updateLinkedNetworks(mInterfaceName, config.networkId, linkedNetworks)) { in updateLinkedNetworks()
DWifiNative.java4984 public boolean updateLinkedNetworks(@NonNull String ifaceName, int networkId,
4986 return mSupplicantStaIfaceHal.updateLinkedNetworks(ifaceName, networkId, linkedNetworks);
DSupplicantStaIfaceHalAidlImpl.java3580 public boolean updateLinkedNetworks(@NonNull String ifaceName, int networkId, in updateLinkedNetworks() method in SupplicantStaIfaceHalAidlImpl
DSupplicantStaIfaceHalHidlImpl.java3860 public boolean updateLinkedNetworks(@NonNull String ifaceName, int networkId, in updateLinkedNetworks() method in SupplicantStaIfaceHalHidlImpl
DWifiConfigManager.java4234 public void updateLinkedNetworks(int networkId) {