Lines Matching full:oui
101 * This function parses a given IE for a given OUI.
104 * a given oui in PTK.
107 mwifiex_search_oui_in_ie(struct ie_body *iebody, u8 *oui) in mwifiex_search_oui_in_ie() argument
118 if (!memcmp(iebody->ptk_body, oui, sizeof(iebody->ptk_body))) in mwifiex_search_oui_in_ie()
127 pr_debug("info: %s: OUI is not found in PTK\n", __func__); in mwifiex_search_oui_in_ie()
132 * This function checks if a given OUI is present in a RSN IE.
135 * BSS descriptor. It tries to locate the OUI only if such an IE is
141 u8 *oui; in mwifiex_is_rsn_oui_present() local
149 oui = &mwifiex_rsn_oui[cipher][0]; in mwifiex_is_rsn_oui_present()
150 ret = mwifiex_search_oui_in_ie(iebody, oui); in mwifiex_is_rsn_oui_present()
158 * This function checks if a given OUI is present in a WPA IE.
161 * BSS descriptor. It tries to locate the OUI only if such an IE is
167 u8 *oui; in mwifiex_is_wpa_oui_present() local
174 oui = &mwifiex_wpa_oui[cipher][0]; in mwifiex_is_wpa_oui_present()
175 ret = mwifiex_search_oui_in_ie(iebody, oui); in mwifiex_is_wpa_oui_present()
1338 /* 802.11 requires at least 3-byte OUI. */ in mwifiex_update_bss_desc_with_ie()
1339 if (element_len < sizeof(vendor_ie->vend_hdr.oui.oui)) in mwifiex_update_bss_desc_with_ie()
1346 if (!memcmp(&vendor_ie->vend_hdr.oui, wpa_oui, in mwifiex_update_bss_desc_with_ie()
1353 } else if (!memcmp(&vendor_ie->vend_hdr.oui, wmm_oui, in mwifiex_update_bss_desc_with_ie()