Lines Matching refs:mcast

1899 	const wpa_suite_mcast_t *mcast;  in wl_validate_wpa2ie()  local
1920 mcast = (const wpa_suite_mcast_t *)&wpa2ie->data[WPA2_VERSION_LEN]; in wl_validate_wpa2ie()
1921 switch (mcast->type) { in wl_validate_wpa2ie()
1950 ucast = (const wpa_suite_ucast_t *)&mcast[1]; in wl_validate_wpa2ie()
2119 const wpa_suite_mcast_t *mcast; in wl_validate_wpaie() local
2147 mcast = (const wpa_suite_mcast_t *)&wpaie[1]; in wl_validate_wpaie()
2149 if (!bcmp(mcast->oui, WPA_OUI, WPA_OUI_LEN)) { in wl_validate_wpaie()
2150 if (IS_WPA_CIPHER(mcast->type)) { in wl_validate_wpaie()
2152 switch (mcast->type) { in wl_validate_wpaie()
2178 ucast = (const wpa_suite_ucast_t *)&mcast[1]; in wl_validate_wpaie()
2303 static u32 wl_get_suite_auth_key_mgmt_type(uint8 type, const wpa_suite_mcast_t *mcast) in wl_get_suite_auth_key_mgmt_type() argument
2308 if (!bcmp(mcast->oui, WPA2_OUI, WPA2_OUI_LEN)) { in wl_get_suite_auth_key_mgmt_type()
2313 if (bcmp(mcast->oui, WFA_OUI, WFA_OUI_LEN) == 0) { in wl_get_suite_auth_key_mgmt_type()
2357 const wpa_suite_mcast_t *mcast; in wl_validate_wpaie_wpa2ie() local
2394 mcast = (const wpa_suite_mcast_t *)&wpaie[1]; in wl_validate_wpaie_wpa2ie()
2396 if (!bcmp(mcast->oui, WPA_OUI, WPA_OUI_LEN)) { in wl_validate_wpaie_wpa2ie()
2397 if (IS_WPA_CIPHER(mcast->type)) { in wl_validate_wpaie_wpa2ie()
2398 gval |= wl_get_cipher_type(mcast->type); in wl_validate_wpaie_wpa2ie()
2411 ucast = (const wpa_suite_ucast_t *)&mcast[1]; in wl_validate_wpaie_wpa2ie()
2443 wl_get_suite_auth_key_mgmt_type(mgmt->list[i].type, mcast); in wl_validate_wpaie_wpa2ie()
2455 mcast = (const wpa_suite_mcast_t *)&wpa2ie->data[WPA2_VERSION_LEN]; in wl_validate_wpaie_wpa2ie()
2456 gval = wl_get_cipher_type(mcast->type); in wl_validate_wpaie_wpa2ie()
2466 ucast = (const wpa_suite_ucast_t *)&mcast[1]; in wl_validate_wpaie_wpa2ie()
2483 wpa_auth2 = wl_get_suite_auth_key_mgmt_type(mgmt->list[0].type, mcast); in wl_validate_wpaie_wpa2ie()