Home
last modified time | relevance | path

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

/hostap-latest/wpa_supplicant/
Dwmm_ac.c82 if (wpa_s->tspecs[ac][idx]) { in wmm_ac_add_ts()
106 wpa_s->tspecs[ac][idx] = _tspec; in wmm_ac_add_ts()
121 struct wmm_tspec_element *tspec = wpa_s->tspecs[ac][dir]; in wmm_ac_del_ts_idx()
137 os_free(wpa_s->tspecs[ac][dir]); in wmm_ac_del_ts_idx()
138 wpa_s->tspecs[ac][dir] = NULL; in wmm_ac_del_ts_idx()
251 if (wpa_s->tspecs[ac][idx] && in wmm_ac_find_tsid()
252 wmm_ac_get_tsid(wpa_s->tspecs[ac][idx]) == tsid) { in wmm_ac_find_tsid()
350 if (wpa_s->tspecs[ac][idx]) in wmm_ac_should_replace_ts()
481 os_memset(wpa_s->tspecs, 0, sizeof(wpa_s->tspecs)); in wmm_ac_init()
569 tspec = *wpa_s->tspecs[ac][dir]; in wpas_wmm_ac_delts()
[all …]
Dwpa_supplicant_i.h1385 struct wmm_tspec_element *tspecs[WMM_AC_NUM][TS_DIR_IDX_COUNT]; member
/hostap-latest/tests/hwsim/
Dtest_wpas_wmm_ac.py270 if dev[0].tspecs():
284 last_tspecs = dev[0].tspecs()
290 if dev[0].tspecs() != last_tspecs:
Dwpasupplicant.py1014 def tspecs(self): member in WpaSupplicant
1017 tspecs = re.findall(r"TSID=(\d+) UP=(\d+)", res)
1018 tspecs = [tuple(map(int, tspec)) for tspec in tspecs]
1020 logger.debug("tspecs: " + str(tspecs))
1021 return tspecs
1054 if (tsid, up) not in self.tspecs():
1067 tspecs = [(t, u) for (t, u) in self.tspecs() if t == tsid]
1068 if tspecs: