Home
last modified time | relevance | path

Searched refs:tx_action (Results 1 – 4 of 4) sorted by relevance

/wlan-driver/qcacld-3.0/components/p2p/dispatcher/src/
H A Dwlan_p2p_ucfg_api.c304 struct tx_action_context *tx_action; in ucfg_p2p_mgmt_tx() local
320 tx_action = qdf_mem_malloc(sizeof(*tx_action)); in ucfg_p2p_mgmt_tx()
321 if (!tx_action) in ucfg_p2p_mgmt_tx()
329 tx_action, &id); in ucfg_p2p_mgmt_tx()
331 qdf_mem_free(tx_action); in ucfg_p2p_mgmt_tx()
338 tx_action->p2p_soc_obj = p2p_soc_obj; in ucfg_p2p_mgmt_tx()
339 tx_action->vdev_id = mgmt_frm->vdev_id; in ucfg_p2p_mgmt_tx()
340 tx_action->chan_freq = mgmt_frm->chan_freq; in ucfg_p2p_mgmt_tx()
341 tx_action->duration = mgmt_frm->wait; in ucfg_p2p_mgmt_tx()
342 tx_action->buf_len = mgmt_frm->len; in ucfg_p2p_mgmt_tx()
[all …]
/wlan-driver/qcacld-3.0/components/p2p/core/src/
H A Dwlan_p2p_off_chan_tx.c3091 struct tx_action_context *tx_action) in p2p_rand_mac_tx() argument
3098 if (!tx_action || !tx_action->p2p_soc_obj || in p2p_rand_mac_tx()
3099 !tx_action->p2p_soc_obj->soc) in p2p_rand_mac_tx()
3101 soc = tx_action->p2p_soc_obj->soc; in p2p_rand_mac_tx()
3103 vdev = wlan_objmgr_get_vdev_by_id_from_pdev(pdev, tx_action->vdev_id, in p2p_rand_mac_tx()
3106 p2p_err("vdev is null id:%d", tx_action->vdev_id); in p2p_rand_mac_tx()
3117 if (!tx_action->no_ack && tx_action->chan_freq && in p2p_rand_mac_tx()
3118 tx_action->buf_len > MIN_MAC_HEADER_LEN && in p2p_rand_mac_tx()
3119 p2p_is_vdev_support_rand_mac_by_id(soc, tx_action->vdev_id) && in p2p_rand_mac_tx()
3120 (p2p_is_random_mac(soc, tx_action->vdev_id, in p2p_rand_mac_tx()
[all …]
H A Dwlan_p2p_main.c1035 struct tx_action_context *tx_action; in p2p_msg_flush_callback() local
1045 tx_action = (struct tx_action_context *)msg->bodyptr; in p2p_msg_flush_callback()
1046 qdf_mem_free(tx_action->buf); in p2p_msg_flush_callback()
1047 qdf_mem_free(tx_action); in p2p_msg_flush_callback()
H A Dwlan_p2p_off_chan_tx.h475 struct tx_action_context *tx_action);