Searched refs:tb_comb (Results 1 – 2 of 2) sorted by relevance
/external/iw/ |
D | info.c | 343 struct nlattr *tb_comb[NUM_NL80211_IFACE_COMB]; in print_phy_handler() local 360 err = nla_parse_nested(tb_comb, MAX_NL80211_IFACE_COMB, in print_phy_handler() 362 if (err || !tb_comb[NL80211_IFACE_COMB_LIMITS] || in print_phy_handler() 363 !tb_comb[NL80211_IFACE_COMB_MAXNUM] || in print_phy_handler() 364 !tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS]) { in print_phy_handler() 369 nla_for_each_nested(nl_limit, tb_comb[NL80211_IFACE_COMB_LIMITS], rem_limit) { in print_phy_handler() 394 nla_get_u32(tb_comb[NL80211_IFACE_COMB_MAXNUM]), in print_phy_handler() 395 nla_get_u32(tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS]), in print_phy_handler() 396 tb_comb[NL80211_IFACE_COMB_STA_AP_BI_MATCH] ? in print_phy_handler() 398 if (tb_comb[NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS]) { in print_phy_handler() [all …]
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_nl80211_capa.c | 139 struct nlattr *tb_comb[NUM_NL80211_IFACE_COMB]; in wiphy_info_iface_comb_process() local 157 err = nla_parse_nested(tb_comb, MAX_NL80211_IFACE_COMB, in wiphy_info_iface_comb_process() 159 if (err || !tb_comb[NL80211_IFACE_COMB_LIMITS] || in wiphy_info_iface_comb_process() 160 !tb_comb[NL80211_IFACE_COMB_MAXNUM] || in wiphy_info_iface_comb_process() 161 !tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS]) in wiphy_info_iface_comb_process() 164 if (tb_comb[NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS]) in wiphy_info_iface_comb_process() 167 nla_for_each_nested(nl_limit, tb_comb[NL80211_IFACE_COMB_LIMITS], in wiphy_info_iface_comb_process() 190 nla_get_u32(tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS]); in wiphy_info_iface_comb_process()
|