Home
last modified time | relevance | path

Searched refs:choiceChosen (Results 1 – 5 of 5) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
DWifiSetupActivity.java195 if (choiceChosen(formPage, R.string.wifi_connect)) { in onPageComplete()
197 } else if (choiceChosen(formPage, R.string.wifi_forget_network)) { in onPageComplete()
204 if (choiceChosen(formPage, R.string.skip_network)) { in onPageComplete()
222 if (choiceChosen(formPage, R.string.wifi_security_type_none)) { in onPageComplete()
224 } else if (choiceChosen(formPage, R.string.wifi_security_type_wep)) { in onPageComplete()
226 } else if (choiceChosen(formPage, R.string.wifi_security_type_wpa)) { in onPageComplete()
228 } else if (choiceChosen(formPage, R.string.wifi_security_type_eap)) { in onPageComplete()
271 if (choiceChosen(formPage, R.string.wifi_action_try_again)) { in onPageComplete()
283 if (choiceChosen(formPage, R.string.wifi_action_try_again)) { in onPageComplete()
293 if (choiceChosen(formPage, R.string.wifi_action_dont_change_network)) { in onPageComplete()
[all …]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
DAdvancedWifiOptionsFlow.java47 boolean choiceChosen(FormPage formPage, int choiceResourceId); in choiceChosen() method
120 if (mPageHandler.choiceChosen(formPage, R.string.wifi_action_advanced_no)) { in handlePageComplete()
130 if (mPageHandler.choiceChosen(formPage, R.string.wifi_action_proxy_none)) { in handlePageComplete()
171 if (mPageHandler.choiceChosen(formPage, R.string.wifi_action_dhcp)) { in handlePageComplete()
349 boolean hasProxySettings = (mAdvancedOptionsPage == null || !mPageHandler.choiceChosen( in processProxySettings()
351 && !mPageHandler.choiceChosen(mProxySettingsPage, R.string.wifi_action_proxy_none); in processProxySettings()
379 boolean hasIpSettings = (mAdvancedOptionsPage == null || !mPageHandler.choiceChosen( in processIpSettings()
381 && !mPageHandler.choiceChosen(mIpSettingsPage, R.string.wifi_action_dhcp); in processIpSettings()
DAddWifiNetworkActivity.java76 if (choiceChosen(formPage, R.string.wifi_security_type_none)) { in onPageComplete()
78 } else if (choiceChosen(formPage, R.string.wifi_security_type_wep)) { in onPageComplete()
80 } else if (choiceChosen(formPage, R.string.wifi_security_type_wpa)) { in onPageComplete()
82 } else if (choiceChosen(formPage, R.string.wifi_security_type_eap)) { in onPageComplete()
126 if (choiceChosen(formPage, R.string.wifi_action_try_again)) { in onPageComplete()
131 if (choiceChosen(formPage, R.string.wifi_action_try_again)) { in onPageComplete()
DWifiConnectionActivity.java100 if (choiceChosen(formPage, R.string.wifi_connect)) { in onPageComplete()
102 } else if (choiceChosen(formPage, R.string.wifi_forget_network)) { in onPageComplete()
143 if (choiceChosen(formPage, R.string.wifi_action_try_again)) { in onPageComplete()
149 if (choiceChosen(formPage, R.string.wifi_action_try_again)) { in onPageComplete()
DWifiMultiPagedFormActivity.java91 public boolean choiceChosen(FormPage formPage, int choiceResourceId) { in choiceChosen() method in WifiMultiPagedFormActivity