Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/dpp/
DWifiDppEnrolleeActivityTest.java50 WifiRestrictionsCache mWifiRestrictionsCache; field in WifiDppEnrolleeActivityTest
58 when(mWifiRestrictionsCache.isConfigWifiAllowed()).thenReturn(true); in setUp()
63 mActivity.mWifiRestrictionsCache = mWifiRestrictionsCache; in setUp()
83 when(mWifiRestrictionsCache.isConfigWifiAllowed()).thenReturn(false); in handleIntent_notAllowedConfigWifi_shouldFinish()
92 when(mWifiRestrictionsCache.isConfigWifiAllowed()).thenReturn(true); in handleIntent_hasIntentDataAndAllowedConfigWifi_shouldShowFragment()
/packages/apps/Settings/src/com/android/settings/wifi/dpp/
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()