Home
last modified time | relevance | path

Searched refs:ts_info (Results 1 – 3 of 3) sorted by relevance

/dragonfly/contrib/wpa_supplicant/wpa_supplicant/
H A Dwmm_ac.c37 return (tspec->ts_info[0] >> 1) & 0x0f; in wmm_ac_get_tsid()
43 return (tspec->ts_info[0] >> 5) & 0x03; in wmm_ac_get_direction()
49 return (tspec->ts_info[1] >> 3) & 0x07; in wmm_ac_get_user_priority()
293 tspec->ts_info[0] = params->tsid << 1; in wmm_ac_build_addts_req()
294 tspec->ts_info[0] |= params->direction << 5; in wmm_ac_build_addts_req()
295 tspec->ts_info[0] |= WMM_AC_ACCESS_POLICY_EDCA << 7; in wmm_ac_build_addts_req()
296 tspec->ts_info[1] = uapsd << 2; in wmm_ac_build_addts_req()
297 tspec->ts_info[1] |= params->user_priority << 3; in wmm_ac_build_addts_req()
298 tspec->ts_info[2] = 0; in wmm_ac_build_addts_req()
/dragonfly/contrib/wpa_supplicant/src/ap/
H A Dwmm.c224 up = (tspec->ts_info[1] >> 3) & 0x07; in wmm_process_tspec()
225 psb = (tspec->ts_info[1] >> 2) & 0x01; in wmm_process_tspec()
226 dir = (tspec->ts_info[0] >> 5) & 0x03; in wmm_process_tspec()
227 tid = (tspec->ts_info[0] >> 1) & 0x0f; in wmm_process_tspec()
/dragonfly/contrib/wpa_supplicant/src/common/
H A Dieee802_11_defs.h1394 u8 ts_info[3]; member