Home
last modified time | relevance | path

Searched refs:WIFI_FEATURE_TRUST_ON_FIRST_USE (Results 1 – 9 of 9) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiConfigManagerTest.java2033 long featureSet = WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE; in testEnterpriseConfigTofuStateMerge()
8034 long featureSet = isTofuSupported ? WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE : 0L; in verifyAddTofuEnterpriseConfig()
8156 WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE); in testUpdateCaCertificateSuccess()
8171 WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE); in testUpdateCaCertificatePathSuccess()
8189 WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE); in testUpdateCaCertificateWithoutAltSubjectNames()
8215 WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE); in testUpdateCaCertificateWithAltSubjectNames()
8255 WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE); in testUpdateCaCertificateFaiulreInvalidArgument()
8291 WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE); in testUpdateCaCertificateSuccessWithSelfSignedCertificate()
8307 WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE); in testUpdateServerCertificateHashSuccess()
8322 WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE); in testUpdateCaCertificateFailureWithSelfSignedCertificateAndTofuNotEnabled()
DSupplicantStaIfaceHalAidlImplTest.java2159 assertEquals(WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE, in testGetWpaDriverCapabilitiesTofu()
DClientModeImplTest.java9747 WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE); in setupTrustOnFirstUse()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/
DWifiManagerTest.java60 import static android.net.wifi.WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE;
3654 .thenReturn(new Long(WIFI_FEATURE_TRUST_ON_FIRST_USE)); in testIsTrustOnFirstUseSupported()
3657 .thenReturn(new Long(~WIFI_FEATURE_TRUST_ON_FIRST_USE)); in testIsTrustOnFirstUseSupported()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DSupplicantStaIfaceHalAidlImpl.java31 import static android.net.wifi.WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE;
2718 featureSet |= WIFI_FEATURE_TRUST_ON_FIRST_USE; in getWpaDriverFeatureSet()
DWifiConfigManager.java24 import static android.net.wifi.WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE;
1583 if ((supportedFeatures & WIFI_FEATURE_TRUST_ON_FIRST_USE) == 0) { in addOrUpdateNetworkInternal()
DWifiServiceImpl.java39 import static android.net.wifi.WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE;
7667 return (getSupportedFeatures() & WIFI_FEATURE_TRUST_ON_FIRST_USE) != 0;
DClientModeImpl.java28 import static android.net.wifi.WifiManager.WIFI_FEATURE_TRUST_ON_FIRST_USE;
8053 return (getSupportedFeatures() & WIFI_FEATURE_TRUST_ON_FIRST_USE) != 0; in isTrustOnFirstUseSupported()
/packages/modules/Wifi/framework/java/android/net/wifi/
DWifiManager.java3972 public static final long WIFI_FEATURE_TRUST_ON_FIRST_USE = 1L << 52; field in WifiManager
8978 return isFeatureSupported(WIFI_FEATURE_TRUST_ON_FIRST_USE); in isTrustOnFirstUseSupported()