HomeSort by relevance Sort by last modified time
    Searched refs:ssid (Results 51 - 75 of 522) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libselinux/include/selinux/
avc.h 237 * @ssid: source security identifier
245 * for the SID pair (@ssid, @tsid), interpreting the permissions
256 int avc_has_perm_noaudit(security_id_t ssid,
264 * @ssid: source security identifier
272 * for the SID pair (@ssid, @tsid), interpreting the permissions
280 int avc_has_perm(security_id_t ssid, security_id_t tsid,
286 * @ssid: source security identifier
303 void avc_audit(security_id_t ssid, security_id_t tsid,
309 * @ssid: source security identifier
321 int avc_compute_create(security_id_t ssid,
    [all...]
  /external/selinux/libselinux/include/selinux/
avc.h 241 * @ssid: source security identifier
249 * for the SID pair (@ssid, @tsid), interpreting the permissions
260 int avc_has_perm_noaudit(security_id_t ssid,
268 * @ssid: source security identifier
276 * for the SID pair (@ssid, @tsid), interpreting the permissions
284 int avc_has_perm(security_id_t ssid, security_id_t tsid,
290 * @ssid: source security identifier
307 void avc_audit(security_id_t ssid, security_id_t tsid,
313 * @ssid: source security identifier
325 int avc_compute_create(security_id_t ssid,
    [all...]
  /external/autotest/client/site_tests/network_RackWiFiConnect/
network_RackWiFiConnect.py 68 def _connect(self, ssid, uname):
71 @param ssid string - predefined SSID from user's preferred networks
88 logging.info('Attempting to connect to %s', ssid)
91 if service['Name'] == ssid:
94 logging.error('Unable to find %s', ssid)
98 logging.info('Successfully connected to network %s', ssid)
101 logging.error('Unable to connect to %s', ssid)
106 def _connect_and_assert(self, test, ssid, user):
110 @param ssid string - predefined SSID from user's preferred network
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
WifiSignalController.java 82 String wifiDesc = wifiVisible ? mCurrentState.ssid : null;
83 boolean ssidPresent = wifiVisible && mCurrentState.ssid != null;
105 mCurrentState.ssid = mWifiTracker.ssid;
146 String ssid; field in class:WifiSignalController.WifiState
152 ssid = state.ssid;
158 builder.append(',').append("ssid=").append(ssid);
164 && Objects.equals(((WifiState) o).ssid, ssid)
    [all...]
  /external/libselinux/src/
avc.c 20 security_id_t ssid; member in struct:avc_entry
41 int (*callback) (uint32_t event, security_id_t ssid,
46 security_id_t ssid; member in struct:avc_callback_node
63 static inline int avc_hash(security_id_t ssid,
66 return ((uintptr_t) ssid ^ ((uintptr_t) tsid << 2) ^ tclass)
302 static inline struct avc_node *avc_claim_node(security_id_t ssid,
322 hvalue = avc_hash(ssid, tsid, tclass);
325 new->ae.ssid = ssid;
335 static inline struct avc_node *avc_search_node(security_id_t ssid,
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
ap.c 101 struct wpa_ssid *ssid,
104 conf->hw_mode = ieee80211_freq_to_chan(ssid->frequency,
109 ssid->frequency);
134 if (ssid->disable_ht) {
147 ssid->ht40)
169 if (mode->vht_capab && ssid->vht) {
183 (int) iface->assoc_freq != ssid->frequency)
205 struct wpa_ssid *ssid,
214 if (wpa_supplicant_conf_ap_ht(wpa_s, ssid, conf))
218 if (ssid->acs)
1202 struct wpa_ssid *ssid = wpa_s->current_ssid; local
    [all...]
interworking.c 863 static int set_root_nai(struct wpa_ssid *ssid, const char *imsi, char prefix)
868 return wpa_config_set_quoted(ssid, "identity", nai);
877 struct wpa_ssid *ssid, *sel_ssid; local
883 ssid = wpa_s->current_ssid;
884 if (ssid->parent_cred != cred)
887 if (ssid->ssid_len != bss->ssid_len ||
888 os_memcmp(ssid->ssid, bss->ssid, bss->ssid_len) != 0)
893 if (selected && sel_ssid && sel_ssid->priority > ssid->priority
904 struct wpa_ssid *ssid; local
968 struct wpa_ssid *ssid; local
1537 struct wpa_ssid *ssid; local
1598 struct wpa_ssid *ssid; local
2264 struct wpa_ssid *ssid; local
    [all...]
wps_supplicant.h 31 enum wps_request_type wpas_wps_get_req_type(struct wpa_ssid *ssid);
41 struct wpa_ssid *ssid, struct wpa_bss *bss);
43 struct wpa_ssid *ssid, struct wpa_bss *bss);
45 struct wpa_bss *selected, struct wpa_ssid *ssid);
72 const u8 *ssid, size_t ssid_len, int freq);
106 static inline u8 wpas_wps_get_req_type(struct wpa_ssid *ssid)
112 struct wpa_ssid *ssid,
119 struct wpa_ssid *ssid,
127 struct wpa_ssid *ssid)
config.h 252 u8 ssid[SSID_MAX_LEN]; member in struct:wpa_cred::excluded_ssid
348 * ssid - Head of the global network list
352 struct wpa_ssid *ssid; member in struct:wpa_config
405 * 2: like 0, but associate with APs using security policy and SSID
415 * with nl80211. For finding networks using hidden SSID, scan_ssid=1 in
425 * ssid block documentation.
815 * filter_ssids - SSID-based scan result filtering
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiAssociationTest.java 36 * * adb shell am instrument -e ssid <ssid> -e password <password> \
57 String ssid = arguments.getString("ssid"); local
58 assertNotNull("ssid is empty", ssid);
76 WifiConfiguration config = getConfig(ssid, securityType, password);
105 * Get the {@link WifiConfiguration} based on ssid, security, and password.
107 private WifiConfiguration getConfig(String ssid, SecurityType securityType, String password) {
113 config = WifiConfigurationHelper.createOpenConfig(ssid);
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/model/
WifiInfo.java 49 /** Ssid of the wifi network. */
50 public final String ssid; field in class:WifiInfo
51 /** Wifi network in {@link #ssid} is hidden or not. */
53 /** Security type of the wifi network in {@link #ssid}. */
56 /** Password of the wifi network in {@link #ssid}. */
59 /** Proxy host for the wifi network in {@link #ssid}. */
62 /** Proxy port for the wifi network in {@link #ssid}. */
64 /** The proxy bypass for the wifi network in {@link #ssid}. */
67 /** The proxy bypass list for the wifi network in {@link #ssid}. */
72 ssid = builder.mSsid
    [all...]
  /external/selinux/libsepol/include/sepol/policydb/
services.h 46 extern int sepol_compute_av(sepol_security_id_t ssid, /* IN */
57 extern int sepol_compute_av_reason(sepol_security_id_t ssid,
73 extern int sepol_compute_av_reason_buffer(sepol_security_id_t ssid,
114 extern int sepol_transition_sid(sepol_security_id_t ssid, /* IN */
124 extern int sepol_member_sid(sepol_security_id_t ssid, /* IN */
133 extern int sepol_change_sid(sepol_security_id_t ssid, /* IN */
  /external/wpa_supplicant_8/src/ap/
ap_config.c 206 struct hostapd_ssid *ssid)
272 pbkdf2_sha1(pos, ssid->ssid, ssid->ssid_len,
284 psk->next = ssid->wpa_psk;
285 ssid->wpa_psk = psk;
294 static int hostapd_derive_psk(struct hostapd_ssid *ssid)
296 ssid->wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
297 if (ssid->wpa_psk == NULL) {
301 wpa_hexdump_ascii(MSG_DEBUG, "SSID",
317 struct hostapd_ssid *ssid = &conf->ssid; local
    [all...]
  /external/autotest/server/cros/
chaos_shadow_ap_list.conf 10 ssid = wifi_interop_dynex
clique_ap_list.conf 7 ssid = clique_dummy
chaos_dynamic_ap_list.conf 17 ssid = linksys_ea3500_g_ch5_wpa2
30 ssid = linksys_ea3500_a_ch149_wpa2
64 ssid = linksys_e2000_a_ch149_wpa2
86 ssid = linksys_e4200_g_ch5_wpa2
99 ssid = linksys_e4200_a_ch149_wpa2
112 ssid = linksys_e2700_g_ch5_wpa2
125 ssid = linksys_e2700_a_ch149_wpa2
184 ssid = keebox_w150nr_g_ch5_wpa2
261 ssid = wndr3400_v2_g_ch5_wpa
274 ssid = wndr3400_v2_a_ch149_wp
    [all...]
  /external/autotest/server/site_tests/network_WiFi_MaskedBSSID/
network_WiFi_MaskedBSSID.py 29 ssid=('CrOS_Masked%d' % i),
31 # Create an AP, manually specifying both the SSID and BSSID.
34 # but an different SSID. These APs together are meant to emulate
36 # respond with more than one (non-empty) SSID.
42 [config.ssid for config in configurations])
  /external/autotest/server/site_tests/network_WiFi_RetryConnectHidden/
network_WiFi_RetryConnectHidden.py 40 ssid=router_ssid, is_hidden=True)
47 channel=11, ssid=router_ssid, hide_ssid=True))
  /external/autotest/server/site_tests/network_WiFi_Roam/
network_WiFi_Roam.py 12 parameters but the same SSID, and shut down the first DUT. We
38 self._client_conf.ssid = router_ssid
41 # Setup a second AP with the same SSID.
42 self._router1_conf.ssid = router_ssid
  /external/autotest/server/site_tests/network_WiFi_Manual/
network_WiFi_Manual.py 19 channel=1, ssid='manual_test',
  /external/libweave/src/privet/
wifi_delegate.h 29 // Starts WiFi setup. Device should try to connect to provided SSID and
33 virtual bool ConfigureCredentials(const std::string& ssid,
37 // Returns SSID of the currently configured WiFi network. Empty string, if
41 // Returns SSID of the WiFi network hosted by this device. Empty if device is
  /external/autotest/server/site_tests/network_WiFi_LinkMonitorFailure/
network_WiFi_LinkMonitorFailure.py 37 ssid = self.context.router.get_ssid()
38 client_config = xmlrpc_datatypes.AssociationParameters(ssid=ssid)
  /external/autotest/server/site_tests/network_WiFi_RoamSuspendSSID/
network_WiFi_RoamSuspendSSID.py 12 """Tests roaming to a new SSID when a previous SSID disappears in suspend.
42 get_client_config = lambda ssid, ap_config: \
44 ssid=ssid,
  /external/autotest/server/site_tests/network_WiFi_SSIDMultiSwitchBack/
network_WiFi_SSIDMultiSwitchBack.py 17 broadcast two BSS's with different frequencies on the same SSID. The DUT
80 ssid=router_ssid))
85 ssid=router_ssid,
100 ssid=router_ssid,
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
ConnectivityManagerTestRunner.java 33 * adb shell am instrument -e ssid <ssid> \
58 String ssid = icicle.getString("ssid"); local
59 if (ssid != null) {
60 mSsid = ssid;

Completed in 1251 milliseconds

1 23 4 5 6 7 8 91011>>