| /src/sys/contrib/dev/athk/ath10k/ |
| H A D | p2p.c | 12 const struct wmi_p2p_noa_info *noa) in ath10k_p2p_noa_ie_fill() argument 15 u8 ctwindow_oppps = noa->ctwindow_oppps; in ath10k_p2p_noa_ie_fill() 20 u8 noa_descriptors = noa->num_descriptors; in ath10k_p2p_noa_ie_fill() 36 noa_attr->index = noa->index; in ath10k_p2p_noa_ie_fill() 43 __le32_to_cpu(noa->descriptors[i].type_count); in ath10k_p2p_noa_ie_fill() 44 noa_attr->desc[i].duration = noa->descriptors[i].duration; in ath10k_p2p_noa_ie_fill() 45 noa_attr->desc[i].interval = noa->descriptors[i].interval; in ath10k_p2p_noa_ie_fill() 46 noa_attr->desc[i].start_time = noa->descriptors[i].start_time; in ath10k_p2p_noa_ie_fill() 54 static size_t ath10k_p2p_noa_ie_len_compute(const struct wmi_p2p_noa_info *noa) in ath10k_p2p_noa_ie_len_compute() argument 58 if (!noa->num_descriptors && in ath10k_p2p_noa_ie_len_compute() [all …]
|
| H A D | p2p.h | 13 const struct wmi_p2p_noa_info *noa); 15 const struct wmi_p2p_noa_info *noa);
|
| H A D | wmi-tlv.c | 427 const struct wmi_p2p_noa_info *noa; in ath10k_wmi_tlv_event_p2p_noa() local 438 noa = tb[WMI_TLV_TAG_STRUCT_P2P_NOA_INFO]; in ath10k_wmi_tlv_event_p2p_noa() 440 if (!ev || !noa) { in ath10k_wmi_tlv_event_p2p_noa() 449 vdev_id, noa->num_descriptors); in ath10k_wmi_tlv_event_p2p_noa() 451 ath10k_p2p_noa_update_by_vdev_id(ar, vdev_id, noa); in ath10k_wmi_tlv_event_p2p_noa()
|
| H A D | wmi.c | 3704 const struct wmi_p2p_noa_info *noa) in ath10k_wmi_update_noa() argument 3709 ath10k_dbg(ar, ATH10K_DBG_MGMT, "noa changed: %d\n", noa->changed); in ath10k_wmi_update_noa() 3711 if (noa->changed & WMI_P2P_NOA_CHANGED_BIT) in ath10k_wmi_update_noa() 3712 ath10k_p2p_noa_update(arvif, noa); in ath10k_wmi_update_noa()
|
| /src/sys/contrib/dev/athk/ath11k/ |
| H A D | p2p.c | 12 const struct ath11k_wmi_p2p_noa_info *noa) in ath11k_p2p_noa_ie_fill() argument 21 ctwindow = u32_get_bits(noa->noa_attr, WMI_P2P_NOA_INFO_CTWIN_TU); in ath11k_p2p_noa_ie_fill() 22 oppps = u32_get_bits(noa->noa_attr, WMI_P2P_NOA_INFO_OPP_PS); in ath11k_p2p_noa_ie_fill() 23 noa_descriptors = u32_get_bits(noa->noa_attr, in ath11k_p2p_noa_ie_fill() 39 noa_attr->index = u32_get_bits(noa->noa_attr, in ath11k_p2p_noa_ie_fill() 46 noa_attr->desc[i].count = noa->descriptors[i].type_count; in ath11k_p2p_noa_ie_fill() 48 cpu_to_le32(noa->descriptors[i].duration); in ath11k_p2p_noa_ie_fill() 50 cpu_to_le32(noa->descriptors[i].interval); in ath11k_p2p_noa_ie_fill() 52 cpu_to_le32(noa->descriptors[i].start_time); in ath11k_p2p_noa_ie_fill() 61 ath11k_p2p_noa_ie_len_compute(const struct ath11k_wmi_p2p_noa_info *noa) in ath11k_p2p_noa_ie_len_compute() argument [all …]
|
| H A D | p2p.h | 15 const struct ath11k_wmi_p2p_noa_info *noa; member 19 const struct ath11k_wmi_p2p_noa_info *noa); 21 const struct ath11k_wmi_p2p_noa_info *noa);
|
| H A D | wmi.c | 9055 const struct ath11k_wmi_p2p_noa_info *noa; in ath11k_wmi_p2p_noa_event() local 9067 noa = tb[WMI_TAG_P2P_NOA_INFO]; in ath11k_wmi_p2p_noa_event() 9069 if (!ev || !noa) in ath11k_wmi_p2p_noa_event() 9073 noa_descriptors = u32_get_bits(noa->noa_attr, in ath11k_wmi_p2p_noa_event() 9094 ath11k_p2p_noa_update_by_vdev_id(ar, vdev_id, noa); in ath11k_wmi_p2p_noa_event()
|
| /src/contrib/wpa/src/p2p/ |
| H A D | p2p_group.c | 41 struct wpabuf *noa; member 121 wpabuf_free(group->noa); in p2p_group_deinit() 164 static void p2p_group_add_noa(struct wpabuf *ie, struct wpabuf *noa) in p2p_group_add_noa() argument 166 if (noa == NULL) in p2p_group_add_noa() 170 wpabuf_put_le16(ie, wpabuf_len(noa)); in p2p_group_add_noa() 171 wpabuf_put_buf(ie, noa); in p2p_group_add_noa() 240 p2p_group_add_noa(ie, group->noa); in p2p_group_build_beacon_ie() 452 p2p_group_add_noa(p2p_subelems, group->noa); in p2p_group_build_probe_resp_ie() 811 int p2p_group_notif_noa(struct p2p_group *group, const u8 *noa, in p2p_group_notif_noa() argument 814 if (noa == NULL) { in p2p_group_notif_noa() [all …]
|
| H A D | p2p_i.h | 591 const u8 *noa; member 735 const u8 *noa, size_t noa_len);
|
| H A D | p2p.c | 4521 static struct wpabuf * p2p_build_presence_resp(u8 status, const u8 *noa, in p2p_build_presence_resp() argument 4534 if (noa) { in p2p_build_presence_resp() 4537 wpabuf_put_data(resp, noa, noa_len); in p2p_build_presence_resp() 4556 u8 noa[50]; in p2p_process_presence_req() local 4581 if (msg.noa == NULL) { in p2p_process_presence_req() 4587 status = p2p_group_presence_req(group, sa, msg.noa, msg.noa_len); in p2p_process_presence_req() 4591 noa_len = p2p->cfg->get_noa(p2p->cfg->cb_ctx, da, noa, in p2p_process_presence_req() 4592 sizeof(noa)); in p2p_process_presence_req() 4595 resp = p2p_build_presence_resp(status, noa_len > 0 ? noa : NULL, in p2p_process_presence_req() 4624 if (msg.status == NULL || msg.noa == NULL) { in p2p_process_presence_resp() [all …]
|
| H A D | p2p.h | 1014 const u8 *noa, size_t noa_len); 1841 int p2p_group_notif_noa(struct p2p_group *group, const u8 *noa,
|
| H A D | p2p_parse.c | 275 msg->noa = data; in p2p_parse_attribute()
|
| /src/sys/contrib/dev/iwlwifi/mvm/ |
| H A D | mac-ctxt.c | 637 struct ieee80211_p2p_noa_attr *noa = in iwl_mvm_mac_ctxt_cmd_p2p_sta_get_oppps_ctwin() local 640 return cpu_to_le32(noa->oppps_ctwindow & in iwl_mvm_mac_ctxt_cmd_p2p_sta_get_oppps_ctwin() 1344 struct ieee80211_p2p_noa_attr *noa = &vif->bss_conf.p2p_noa_attr; in iwl_mvm_mac_ctxt_cmd_go() local 1355 cmd.go.ctwin = cpu_to_le32(noa->oppps_ctwindow & in iwl_mvm_mac_ctxt_cmd_go() 1358 cpu_to_le32(!!(noa->oppps_ctwindow & in iwl_mvm_mac_ctxt_cmd_go()
|
| /src/sys/contrib/dev/rtw89/ |
| H A D | coex.c | 6140 wl_rinfo->active_role[cnt_active - 1].noa = (u8)wl_linfo[i].noa; in _update_wl_info() 6291 wl_rinfo->active_role_v1[cnt_active - 1].noa = (u8)wl_linfo[i].noa; in _update_wl_info_v1() 6441 wl_rinfo->active_role_v2[cnt_active - 1].noa = (u8)wl_linfo[i].noa; in _update_wl_info_v2() 6665 bool client_joined, u32 noa) in _update_role_link_mode() argument 6717 type = noa ? BTC_WLMROLE_STA_GO_NOA : BTC_WLMROLE_STA_GO; in _update_role_link_mode() 6719 type = noa ? BTC_WLMROLE_STA_GC_NOA : BTC_WLMROLE_STA_GC; in _update_role_link_mode() 6723 dur = noa; in _update_role_link_mode() 6776 act_role->noa = wl_linfo[i].noa; in _update_wl_info_v7() 6798 if (act_role->noa && act_role->noa_dur > 0) in _update_wl_info_v7() 7239 rlink->noa = wl_linfo->noa; in _update_wl_info_v8() [all …]
|
| H A D | core.h | 1501 u32 noa: 1; member 1618 u8 noa: 1; member 1637 u8 noa: 1; member 1658 u8 noa: 1; member 1674 u8 noa; member 1754 u8 noa; member
|
| H A D | fw.c | 5068 RTW89_SET_FWCMD_CXROLE_ACT_NOA(cmd, active->noa, i, offset); 5149 RTW89_SET_FWCMD_CXROLE_ACT_NOA(cmd, active->noa, i, offset); 5239 RTW89_SET_FWCMD_CXROLE_ACT_NOA_V2(cmd, active->noa, i, offset);
|
| /src/contrib/wpa/wpa_supplicant/ |
| H A D | p2p_supplicant.c | 4295 const u8 *noa, size_t noa_len) in wpas_presence_resp() argument 4310 wpa_snprintf_hex(hex, sizeof(hex), noa, noa_len); in wpas_presence_resp()
|
| /src/share/dict/ |
| H A D | web2 | 124862 noa
|