Home
last modified time | relevance | path

Searched refs:sb_ops (Results 1 – 8 of 8) sorted by relevance

/wlan-driver/qcacld-3.0/components/target_if/dp/src/
H A Dtarget_if_dp_comp.c358 void target_if_dp_register_tx_ops(struct wlan_dp_psoc_sb_ops *sb_ops) in target_if_dp_register_tx_ops() argument
360 sb_ops->dp_arp_stats_register_event_handler = in target_if_dp_register_tx_ops()
362 sb_ops->dp_arp_stats_unregister_event_handler = in target_if_dp_register_tx_ops()
364 sb_ops->dp_get_arp_req_stats = in target_if_dp_register_tx_ops()
366 sb_ops->dp_set_arp_req_stats = in target_if_dp_register_tx_ops()
368 sb_ops->dp_lro_config_cmd = target_if_dp_lro_config_cmd; in target_if_dp_register_tx_ops()
369 sb_ops->dp_send_dhcp_ind = in target_if_dp_register_tx_ops()
/wlan-driver/qcacld-3.0/components/target_if/dp/inc/
H A Dtarget_if_dp_comp.h40 void target_if_dp_register_tx_ops(struct wlan_dp_psoc_sb_ops *sb_ops);
/wlan-driver/qcacld-3.0/components/dp/dispatcher/src/
H A Dwlan_dp_ucfg_api.c2150 struct wlan_dp_psoc_sb_ops *sb_ops = dp_intf_get_tx_ops(psoc); in ucfg_dp_set_nud_stats_cb() local
2152 if (!sb_ops) { in ucfg_dp_set_nud_stats_cb()
2157 sb_ops->dp_arp_stats_register_event_handler(psoc); in ucfg_dp_set_nud_stats_cb()
2158 sb_ops->arp_request_ctx = cookie; in ucfg_dp_set_nud_stats_cb()
2163 struct wlan_dp_psoc_sb_ops *sb_ops = dp_intf_get_tx_ops(psoc); in ucfg_dp_clear_nud_stats_cb() local
2165 if (!sb_ops) { in ucfg_dp_clear_nud_stats_cb()
2170 sb_ops->dp_arp_stats_unregister_event_handler(psoc); in ucfg_dp_clear_nud_stats_cb()
2202 struct wlan_dp_psoc_sb_ops *sb_ops = dp_intf_get_tx_ops(psoc); in ucfg_dp_req_get_arp_stats() local
2204 if (!sb_ops) { in ucfg_dp_req_get_arp_stats()
2209 return sb_ops->dp_get_arp_req_stats(psoc, params); in ucfg_dp_req_get_arp_stats()
[all …]
/wlan-driver/qcacld-3.0/components/dp/core/src/
H A Dwlan_dp_softap_txrx.c220 struct wlan_dp_psoc_sb_ops *sb_ops; in dp_post_dhcp_ind() local
245 sb_ops = &dp_intf->dp_ctx->sb_ops; in dp_post_dhcp_ind()
255 status = sb_ops->dp_send_dhcp_ind(dp_link->link_id, &msg); in dp_post_dhcp_ind()
H A Dwlan_dp_txrx.c1291 status = dp_ctx->sb_ops.dp_lro_config_cmd(dp_ctx->psoc, &lro_config); in dp_rx_ol_send_config()
H A Dwlan_dp_main.c1457 target_if_dp_register_tx_ops(&dp_ctx->sb_ops); in dp_psoc_obj_create_notification()
/wlan-driver/qcacld-3.0/components/dp/core/inc/
H A Dwlan_dp_main.h723 return &dp_ctx->sb_ops; in dp_intf_get_tx_ops()
767 return dp_ctx->sb_ops.arp_request_ctx; in dp_get_arp_request_ctx()
H A Dwlan_dp_priv.h847 struct wlan_dp_psoc_sb_ops sb_ops; member