Lines Matching full:oui
113 * This function parses a given IE for a given OUI.
116 * a given oui in PTK.
119 mwifiex_search_oui_in_ie(struct ie_body *iebody, u8 *oui) in mwifiex_search_oui_in_ie() argument
130 if (!memcmp(iebody->ptk_body, oui, sizeof(iebody->ptk_body))) in mwifiex_search_oui_in_ie()
139 pr_debug("info: %s: OUI is not found in PTK\n", __func__); in mwifiex_search_oui_in_ie()
144 * This function checks if a given OUI is present in a RSN IE.
147 * BSS descriptor. It tries to locate the OUI only if such an IE is
153 u8 *oui; in mwifiex_is_rsn_oui_present() local
161 oui = &mwifiex_rsn_oui[cipher][0]; in mwifiex_is_rsn_oui_present()
162 ret = mwifiex_search_oui_in_ie(iebody, oui); in mwifiex_is_rsn_oui_present()
170 * This function checks if a given OUI is present in a WPA IE.
173 * BSS descriptor. It tries to locate the OUI only if such an IE is
179 u8 *oui; in mwifiex_is_wpa_oui_present() local
186 oui = &mwifiex_wpa_oui[cipher][0]; in mwifiex_is_wpa_oui_present()
187 ret = mwifiex_search_oui_in_ie(iebody, oui); in mwifiex_is_wpa_oui_present()
1368 /* 802.11 requires at least 3-byte OUI. */ in mwifiex_update_bss_desc_with_ie()
1369 if (element_len < sizeof(vendor_ie->vend_hdr.oui.oui)) in mwifiex_update_bss_desc_with_ie()
1376 if (!memcmp(&vendor_ie->vend_hdr.oui, wpa_oui, in mwifiex_update_bss_desc_with_ie()
1383 } else if (!memcmp(&vendor_ie->vend_hdr.oui, wmm_oui, in mwifiex_update_bss_desc_with_ie()