Home
last modified time | relevance | path

Searched refs:mMacForSap (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DMacAddressUtilTest.java48 @Mock private Mac mMacForSap; field in MacAddressUtilTest
56 eq(MacAddressUtil.MAC_RANDOMIZATION_SAP_ALIAS))).thenReturn(mMacForSap); in setUp()
106 when(mMacForSap.doFinal(any())).thenReturn(bytes); in testCalculatePersistentMacForSap()
113 verify(mMacForSap, times(10)).doFinal(any()); in testCalculatePersistentMacForSap()
118 when(mMacForSap.doFinal(any())).thenThrow(new ProviderException("error occurred")); in testCalculatePersistentMacForSap()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DMacAddressUtil.java48 private Mac mMacForSap = null; field in MacAddressUtil
129 return mMacForSap; in getCachedHashFunction()
138 mMacForSap = mac; in cacheHashFunction()