Searched refs:otherConfig (Results 1 – 5 of 5) sorted by relevance
55 final IkeSocketConfig otherConfig = buildTestConfig(); in testEquals() local57 assertEquals(config, otherConfig); in testEquals()58 assertNotSame(config, otherConfig); in testEquals()
305 final MulticastRoutingConfig otherConfig = (MulticastRoutingConfig) other; in equals() local306 return mForwardingMode == otherConfig.mForwardingMode in equals()307 && mMinScope == otherConfig.mMinScope in equals()308 && mListeningAddresses.equals(otherConfig.mListeningAddresses); in equals()
4078 public boolean matches(WifiConfiguration otherConfig) { in matches() argument4079 if (otherConfig == null) return false; in matches()4080 return mConfig.getProfileKey().equals(otherConfig.getProfileKey()); in matches()
3664 public boolean matches(WifiConfiguration otherConfig) { in matches() argument3665 if (otherConfig == null) return false; in matches()3666 return mConfig.SSID.equals(otherConfig.SSID); in matches()
5504 WifiConfiguration otherConfig = WifiConfigurationTestUtil.createOpenNetwork(TEST_SSID); in testConnectNetworkStopConnectedSecondaryInternetCmm() local5516 when(secondaryInternetCmm.getConnectedWifiConfiguration()).thenReturn(otherConfig); in testConnectNetworkStopConnectedSecondaryInternetCmm()