Home
last modified time | relevance | path

Searched refs:SECURITY_NONE (Results 1 – 12 of 12) sorted by relevance

/frameworks/opt/net/wifi/libs/WifiTrackerLib/tests/src/com/android/wifitrackerlib/
DStandardNetworkDetailsTrackerTest.java28 import static com.android.wifitrackerlib.WifiEntry.SECURITY_NONE;
141 ssidAndSecurityTypeToStandardWifiEntryKey("ssid", SECURITY_NONE); in testGetWifiEntry_HasCorrectKey()
167 ssidAndSecurityTypeToStandardWifiEntryKey("ssid", SECURITY_NONE); in testConstructor_lifecycleCallbacksWhenRegistering_populatesChosenEntry()
183 ssidAndSecurityTypeToStandardWifiEntryKey("ssid", SECURITY_NONE); in testScanResultsAvailableAction_updates_getLevel()
222 ssidAndSecurityTypeToStandardWifiEntryKey("ssid", SECURITY_NONE); in testConfiguredNetworksChangedAction_updates_isSaved()
262 ssidAndSecurityTypeToStandardWifiEntryKey("ssid", SECURITY_NONE); in testWifiStateChanged_disabled_clearsLevel()
329 ssidAndSecurityTypeToStandardWifiEntryKey(ssid, SECURITY_NONE).toString()); in testScanner_wifiScannerResultReceived_scanResultsUpdated()
DNetworkDetailsTrackerTest.java117 Collections.singletonList(WifiEntry.SECURITY_NONE))).toString()); in testCreateNetworkDetailsTracker_returnsStandardNetworkDetailsTracker()
DStandardWifiEntryTest.java208 assertThat(unsecureEntry.getSecurity()).isEqualTo(WifiEntry.SECURITY_NONE); in testConstructor_targetingNewSecurity_scanResultsSetSecurity()
1685 assertThat(entry.getSecurity()).isEqualTo(WifiEntry.SECURITY_NONE); in testGetSecurity_openAndOwe_returnsOpen()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
DAccessPoint.java219 public static final int SECURITY_NONE = 0; field in AccessPoint
532 if ((security != SECURITY_NONE) && (security != SECURITY_OWE)) { in toString()
781 } else if (otherApSecurity == SECURITY_NONE) { in matches()
785 if ((security == SECURITY_OWE || security == SECURITY_NONE) in matches()
816 } else if (configSecurity == SECURITY_NONE) { in matches()
865 } else if (scanResultSccurity == SECURITY_NONE) { in matches()
869 if ((security == SECURITY_OWE || security == SECURITY_NONE) in matches()
1056 case SECURITY_NONE: in getSecurityString()
1387 if (security == SECURITY_NONE) { in generateOpenNetworkConfig()
1771 return wifiManager.isEnhancedOpenSupported() ? SECURITY_OWE : SECURITY_NONE; in getSecurity()
[all …]
DAccessPointPreference.java210 if ((mAccessPoint.getSecurity() != AccessPoint.SECURITY_NONE) in bindFrictionImage()
292 ap.getSecurity() == AccessPoint.SECURITY_NONE in buildContentDescription()
DTestAccessPointBuilder.java57 private int mSecurity = AccessPoint.SECURITY_NONE;
/frameworks/opt/net/wifi/libs/WifiTrackerLib/src/com/android/wifitrackerlib/
DWifiEntry.java78 SECURITY_NONE,
90 public static final int SECURITY_NONE = 0; field in WifiEntry
441 return SECURITY_NONE; in getSecurity()
460 return SECURITY_NONE; in getSecurity()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/dialog/
DInternetAdapterTest.java104 when(mWifiEntry.getSecurity()).thenReturn(WifiEntry.SECURITY_NONE); in onBindViewHolder_bindWithOpenWifiNetwork_verifyView()
276 mViewHolder.updateEndIcon(WifiEntry.CONNECTED_STATE_DISCONNECTED, WifiEntry.SECURITY_NONE); in viewHolderUpdateEndIcon_wifiDisconnectedAndSecurityNone_hideIcon()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/connectivity/
DAccessPointControllerImplTest.kt240 `when`(wifiEntryOther.security).thenReturn(WifiEntry.SECURITY_NONE) in connectToNotSecuredNotSavedWifiEntry()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/connectivity/
DAccessPointControllerImpl.java191 if (ap.getSecurity() != WifiEntry.SECURITY_NONE) { in connect()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/dialog/
DInternetAdapter.java257 } else if (security != WifiEntry.SECURITY_NONE && security != WifiEntry.SECURITY_OWE) { in updateEndIcon()
/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/wifi/
DAccessPointTest.java548 .setSecurity(AccessPoint.SECURITY_NONE)
1542 if (i == AccessPoint.SECURITY_NONE || i == AccessPoint.SECURITY_OWE) { in testIsOpenNetwork_returnValidResult()
1686 .setSecurity(AccessPoint.SECURITY_NONE).build(); in testGenerateOpenNetworkConfig_oweNotSupported_shouldGetCorrectSecurity()