Searched defs:security (Results 1 - 5 of 5) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
H A DWifiConnectionActivity.java32 * Add a wifi network where we already know the ssid/security; normal post-install settings.
47 public static Intent createIntent(Context context, ScanResult result, WifiSecurity security) { argument
50 .putExtra(EXTRA_WIFI_SECURITY_NAME, security.name());
H A DWifiConfigHelper.java80 WifiConfiguration config, WifiSecurity security) {
83 switch (security) {
206 * Return the configured network that matches the ssid/security pair, or create one.
209 WifiSecurity security) {
210 WifiConfiguration config = getFromConfiguredNetworks(context, ssid, security);
213 // No configured network found; populate a new one with the provided ssid / security.
216 setConfigKeyManagementBySecurity(config, security);
297 WifiSecurity security) {
306 // If the SSID and the security match, that's our network.
310 if (configuredSecurity.equals(security)) {
79 setConfigKeyManagementBySecurity( WifiConfiguration config, WifiSecurity security) argument
208 getConfiguration(Context context, String ssid, WifiSecurity security) argument
296 getFromConfiguredNetworks(Context context, String ssid, WifiSecurity security) argument
[all...]
H A DWifiNetworksBrowseInfo.java115 WifiSecurity security = WifiSecurity.getSecurity(network);
117 String networkDescription = security.isOpen() ? "" : security.getName(mContext);
119 WifiConnectionActivity.createIntent(mContext, network, security);
132 Integer itemId = getItemId(network, security);
154 private Integer getItemId(ScanResult network, WifiSecurity security) { argument
155 Pair<String, WifiSecurity> key = Pair.create(network.SSID, security);
209 WifiSecurity security = WifiSecurity.getSecurity(scanResult);
210 if (security.isOpen()) {
250 WifiSecurity security
[all...]
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWriteWifiConfigToNfcDialog.java60 private static final String SECURITY = "security";
78 WriteWifiConfigToNfcDialog(Context context, int networkId, int security, argument
87 mSecurity = security;
/packages/apps/Email/provider_src/com/android/email/activity/setup/
H A DAccountSecurity.java49 * Psuedo-activity (no UI) to bootstrap the user up to a higher desired security level. This
52 * 1. Confirm the account of interest has any security policies defined - exit early if not
109 * the necessary system settings. Should be true anywhere the context of the security settings
160 final SecurityPolicy security = SecurityPolicy.getInstance(this);
161 security.clearNotification();
332 // Otherwise, handle normal security settings flow
334 // This account wants to control security
342 LogUtils.d(TAG, "Showing security needed dialog");
347 // Go directly to security settings
366 * the requisite security setting
488 repostNotification(final Account account, final SecurityPolicy security) argument
[all...]

Completed in 189 milliseconds