Home
last modified time | relevance | path

Searched refs:otherConfig (Results 1 – 5 of 5) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/
DIkeSocketConfigTest.java55 final IkeSocketConfig otherConfig = buildTestConfig(); in testEquals() local
57 assertEquals(config, otherConfig); in testEquals()
58 assertNotSame(config, otherConfig); in testEquals()
/packages/modules/Connectivity/framework/src/android/net/
DMulticastRoutingConfig.java305 final MulticastRoutingConfig otherConfig = (MulticastRoutingConfig) other; in equals() local
306 return mForwardingMode == otherConfig.mForwardingMode in equals()
307 && mMinScope == otherConfig.mMinScope in equals()
308 && mListeningAddresses.equals(otherConfig.mListeningAddresses); in equals()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiNetworkFactoryTest.java4078 public boolean matches(WifiConfiguration otherConfig) { in matches() argument
4079 if (otherConfig == null) return false; in matches()
4080 return mConfig.getProfileKey().equals(otherConfig.getProfileKey()); in matches()
DWifiNetworkSuggestionsManagerTest.java3664 public boolean matches(WifiConfiguration otherConfig) { in matches() argument
3665 if (otherConfig == null) return false; in matches()
3666 return mConfig.SSID.equals(otherConfig.SSID); in matches()
DWifiServiceImplTest.java5504 WifiConfiguration otherConfig = WifiConfigurationTestUtil.createOpenNetwork(TEST_SSID); in testConnectNetworkStopConnectedSecondaryInternetCmm() local
5516 when(secondaryInternetCmm.getConnectedWifiConfiguration()).thenReturn(otherConfig); in testConnectNetworkStopConnectedSecondaryInternetCmm()