Home
last modified time | relevance | path

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

/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/dpp/
H A DWifiDppEnrolleeActivityTest.java48 WifiRestrictionsCache mWifiRestrictionsCache; field in WifiDppEnrolleeActivityTest
56 when(mWifiRestrictionsCache.isConfigWifiAllowed()).thenReturn(true); in setUp()
61 mActivity.mWifiRestrictionsCache = mWifiRestrictionsCache; in setUp()
81 when(mWifiRestrictionsCache.isConfigWifiAllowed()).thenReturn(false); in handleIntent_notAllowedConfigWifi_shouldFinish()
90 when(mWifiRestrictionsCache.isConfigWifiAllowed()).thenReturn(true); in handleIntent_hasIntentDataAndAllowedConfigWifi_shouldShowFragment()
/aosp12/packages/apps/Settings/src/com/android/settings/wifi/dpp/
H A DWifiDppEnrolleeActivity.java44 protected WifiRestrictionsCache mWifiRestrictionsCache; field in WifiDppEnrolleeActivity
79 if (mWifiRestrictionsCache == null) { in isWifiConfigAllowed()
80 mWifiRestrictionsCache = WifiRestrictionsCache.getInstance(getApplicationContext()); in isWifiConfigAllowed()
82 return mWifiRestrictionsCache.isConfigWifiAllowed(); in isWifiConfigAllowed()