Searched refs:queue (Results 1 – 11 of 11) sorted by relevance
/hostap-latest/src/common/ |
D | ieee802_11_common.c | 1327 struct hostapd_tx_queue_params *queue; in hostapd_config_tx_queue() local 1350 queue = &tx_queue[num]; in hostapd_config_tx_queue() 1353 queue->aifs = atoi(val); in hostapd_config_tx_queue() 1354 if (queue->aifs < 0 || queue->aifs > 255) { in hostapd_config_tx_queue() 1356 queue->aifs); in hostapd_config_tx_queue() 1360 queue->cwmin = atoi(val); in hostapd_config_tx_queue() 1361 if (!valid_cw(queue->cwmin)) { in hostapd_config_tx_queue() 1363 queue->cwmin); in hostapd_config_tx_queue() 1367 queue->cwmax = atoi(val); in hostapd_config_tx_queue() 1368 if (!valid_cw(queue->cwmax)) { in hostapd_config_tx_queue() [all …]
|
D | ieee802_11_common.h | 241 int hostapd_config_tx_queue(struct hostapd_tx_queue_params queue[],
|
/hostap-latest/wpa_supplicant/ |
D | ctrl_iface_unix.c | 388 static void wpas_ctrl_msg_queue(struct dl_list *queue, in wpas_ctrl_msg_queue() argument 405 dl_list_add_tail(queue, &msg->list); in wpas_ctrl_msg_queue() 412 struct dl_list *queue) in wpas_ctrl_msg_queue_limit() argument 419 msg = dl_list_first(queue, struct ctrl_iface_msg, list); in wpas_ctrl_msg_queue_limit()
|
/hostap-latest/src/ap/ |
D | ap_config.c | 1521 static int hostapd_config_check_cw(struct hostapd_config *conf, int queue) in hostapd_config_check_cw() argument 1523 int tx_cwmin = conf->tx_queue[queue].cwmin; in hostapd_config_check_cw() 1524 int tx_cwmax = conf->tx_queue[queue].cwmax; in hostapd_config_check_cw() 1525 int ac_cwmin = conf->wmm_ac_params[queue].cwmin; in hostapd_config_check_cw() 1526 int ac_cwmax = conf->wmm_ac_params[queue].cwmax; in hostapd_config_check_cw()
|
D | wpa_auth_i.h | 293 struct dl_list queue; /* send nonces + rrb msgs awaiting seq resp */ member
|
D | ap_drv_ops.c | 730 int hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs, in hostapd_set_tx_queue_params() argument 743 return hapd->driver->set_tx_queue_params(hapd->drv_priv, queue, aifs, in hostapd_set_tx_queue_params()
|
D | ap_drv_ops.h | 84 int hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs,
|
D | wpa_auth_ft.c | 940 dl_list_for_each_safe(item, n, &rkh_seq->rx.queue, in wpa_ft_rrb_seq_flush() 984 if (dl_list_len(&rkh_seq->rx.queue) >= ftRRBmaxQueueLen) { in wpa_ft_rrb_seq_req() 1033 dl_list_add(&rkh_seq->rx.queue, &item->list); in wpa_ft_rrb_seq_req() 1570 dl_list_init(&r0kh->seq->rx.queue); in wpa_ft_rrb_init_r0kh_seq() 1617 dl_list_init(&r1kh->seq->rx.queue); in wpa_ft_rrb_init_r1kh_seq() 4664 dl_list_for_each(item, &rkh_seq->rx.queue, struct ft_remote_item, in wpa_ft_rrb_rx_seq_resp() 4717 dl_list_len(&rkh_seq->rx.queue); in wpa_ft_rrb_rx_seq_resp()
|
/hostap-latest/tests/hwsim/ |
D | p2p_utils.py | 14 from queue import Queue
|
/hostap-latest/src/drivers/ |
D | driver.h | 3872 int (*set_tx_queue_params)(void *priv, int queue, int aifs, int cw_min,
|
D | driver_nl80211.c | 8170 static int i802_set_tx_queue_params(void *priv, int queue, int aifs, in i802_set_tx_queue_params() argument 8193 switch (queue) { in i802_set_tx_queue_params() 8231 link_id, queue, aifs, cw_min, cw_max, burst_time, res); in i802_set_tx_queue_params()
|