• Home
  • Raw
  • Download

Lines Matching refs:wsm_buf

78 static void wsm_buf_reset(struct wsm_buf *buf);
79 static int wsm_buf_reserve(struct wsm_buf *buf, size_t extra_size);
82 struct wsm_buf *buf,
93 struct wsm_buf *buf) in wsm_generic_confirm()
108 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_configuration()
136 struct wsm_buf *buf) in wsm_configuration_confirm()
166 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_reset()
193 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_read_mib()
216 struct wsm_buf *buf) in wsm_read_mib_confirm()
244 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_write_mib()
269 struct wsm_buf *buf) in wsm_write_mib_confirm()
291 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_scan()
343 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_stop_scan()
353 struct wsm_buf *buf, in wsm_tx_confirm()
375 struct wsm_buf *buf, int link_id) in wsm_multi_tx_confirm()
409 struct wsm_buf *buf) in wsm_join_confirm()
428 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_join()
467 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_set_bss_params()
492 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_add_key()
514 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_remove_key()
539 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_set_tx_queue_params()
568 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_set_edca_params()
615 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_switch_channel()
643 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_set_pm()
669 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_start()
703 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_beacon_transmit()
725 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_start_find()
738 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_stop_find()
751 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_map_link()
775 struct wsm_buf *buf = &priv->wsm_cmd_buf; in wsm_update_ie()
811 struct wsm_buf *buf) in wsm_startup_indication()
862 struct wsm_buf *buf, in wsm_receive_indication()
915 static int wsm_event_indication(struct cw1200_common *priv, struct wsm_buf *buf) in wsm_event_indication()
951 struct wsm_buf *buf) in wsm_channel_switch_indication()
967 struct wsm_buf *buf) in wsm_set_pm_indication()
978 struct wsm_buf *buf) in wsm_scan_started()
993 struct wsm_buf *buf) in wsm_scan_complete_indication()
1008 struct wsm_buf *buf) in wsm_join_complete_indication()
1022 struct wsm_buf *buf) in wsm_find_complete_indication()
1029 struct wsm_buf *buf) in wsm_ba_timeout_indication()
1049 int link_id, struct wsm_buf *buf) in wsm_suspend_resume_indication()
1073 struct wsm_buf *buf, in wsm_cmd_send()
1241 struct wsm_buf buf; in wsm_handle_exception()
1299 struct wsm_buf wsm_buf; in wsm_handle_rx() local
1305 wsm_buf.begin = (u8 *)&wsm[0]; in wsm_handle_rx()
1306 wsm_buf.data = (u8 *)&wsm[1]; in wsm_handle_rx()
1307 wsm_buf.end = &wsm_buf.begin[__le16_to_cpu(wsm->len)]; in wsm_handle_rx()
1310 wsm_buf.end - wsm_buf.begin); in wsm_handle_rx()
1313 ret = wsm_tx_confirm(priv, &wsm_buf, link_id); in wsm_handle_rx()
1315 ret = wsm_multi_tx_confirm(priv, &wsm_buf, link_id); in wsm_handle_rx()
1344 &wsm_buf); in wsm_handle_rx()
1349 &wsm_buf); in wsm_handle_rx()
1353 ret = wsm_scan_started(priv, wsm_arg, &wsm_buf); in wsm_handle_rx()
1358 &wsm_buf); in wsm_handle_rx()
1362 ret = wsm_join_confirm(priv, wsm_arg, &wsm_buf); in wsm_handle_rx()
1380 ret = wsm_generic_confirm(priv, wsm_arg, &wsm_buf); in wsm_handle_rx()
1411 ret = wsm_startup_indication(priv, &wsm_buf); in wsm_handle_rx()
1415 &wsm_buf, skb_p); in wsm_handle_rx()
1418 ret = wsm_event_indication(priv, &wsm_buf); in wsm_handle_rx()
1421 ret = wsm_scan_complete_indication(priv, &wsm_buf); in wsm_handle_rx()
1424 ret = wsm_ba_timeout_indication(priv, &wsm_buf); in wsm_handle_rx()
1427 ret = wsm_set_pm_indication(priv, &wsm_buf); in wsm_handle_rx()
1430 ret = wsm_channel_switch_indication(priv, &wsm_buf); in wsm_handle_rx()
1433 ret = wsm_find_complete_indication(priv, &wsm_buf); in wsm_handle_rx()
1437 link_id, &wsm_buf); in wsm_handle_rx()
1440 ret = wsm_join_complete_indication(priv, &wsm_buf); in wsm_handle_rx()
1775 void wsm_buf_init(struct wsm_buf *buf) in wsm_buf_init()
1783 void wsm_buf_deinit(struct wsm_buf *buf) in wsm_buf_deinit()
1789 static void wsm_buf_reset(struct wsm_buf *buf) in wsm_buf_reset()
1799 static int wsm_buf_reserve(struct wsm_buf *buf, size_t extra_size) in wsm_buf_reserve()