Lines Matching refs:oui_entry

19624 	wl_vndr_oui_entry_t *oui_entry = NULL;  in wl_vndr_ies_check_duplicate_vndr_oui()  local
19629 list_for_each_entry(oui_entry, &cfg->vndr_oui_list, list) { in wl_vndr_ies_check_duplicate_vndr_oui()
19631 if (!memcmp(oui_entry->oui, vndr_info->vndrie.oui, DOT11_OUI_LEN)) { in wl_vndr_ies_check_duplicate_vndr_oui()
19644 wl_vndr_oui_entry_t *oui_entry = NULL; in wl_vndr_ies_add_vendor_oui_list() local
19647 oui_entry = kmalloc(sizeof(*oui_entry), GFP_KERNEL); in wl_vndr_ies_add_vendor_oui_list()
19648 if (oui_entry == NULL) { in wl_vndr_ies_add_vendor_oui_list()
19653 memcpy(oui_entry->oui, vndr_info->vndrie.oui, DOT11_OUI_LEN); in wl_vndr_ies_add_vendor_oui_list()
19655 INIT_LIST_HEAD(&oui_entry->list); in wl_vndr_ies_add_vendor_oui_list()
19657 list_add_tail(&oui_entry->list, &cfg->vndr_oui_list); in wl_vndr_ies_add_vendor_oui_list()
19666 wl_vndr_oui_entry_t *oui_entry = NULL; in wl_vndr_ies_clear_vendor_oui_list() local
19672 oui_entry = list_entry(cfg->vndr_oui_list.next, wl_vndr_oui_entry_t, list); in wl_vndr_ies_clear_vendor_oui_list()
19674 if (oui_entry) { in wl_vndr_ies_clear_vendor_oui_list()
19675 list_del(&oui_entry->list); in wl_vndr_ies_clear_vendor_oui_list()
19676 kfree(oui_entry); in wl_vndr_ies_clear_vendor_oui_list()
19690 wl_vndr_oui_entry_t *oui_entry = NULL; in wl_vndr_ies_get_vendor_oui() local
19724 list_for_each_entry(oui_entry, &cfg->vndr_oui_list, list) { in wl_vndr_ies_get_vendor_oui()
19731 oui_entry->oui[0], oui_entry->oui[1], oui_entry->oui[2]); in wl_vndr_ies_get_vendor_oui()
19749 wl_vndr_oui_entry_t *oui_entry = NULL; in wl_vndr_ies_find_vendor_oui() local
19782 list_for_each_entry(oui_entry, &cfg->vndr_oui_list, list) { in wl_vndr_ies_find_vendor_oui()
19784 if (!memcmp(vndr_oui, oui_entry->oui, DOT11_OUI_LEN)) { in wl_vndr_ies_find_vendor_oui()