Home
last modified time | relevance | path

Searched refs:tspec (Results 1 – 11 of 11) sorted by relevance

/freebsd-14.2/contrib/wpa/wpa_supplicant/
H A Dwmm_ac.c124 if (!tspec) in wmm_ac_del_ts_idx()
193 wpabuf_put_data(buf, &req->tspec, sizeof(req->tspec)); in wmm_ac_send_addts_request()
227 wpabuf_put_data(buf, tspec, sizeof(*tspec)); in wmm_ac_send_delts()
276 tspec = &addts_req->tspec; in wmm_ac_build_addts_req()
285 tspec->length = sizeof(*tspec) - 2; /* reduce eid and length */ in wmm_ac_build_addts_req()
286 tspec->oui[0] = 0x00; in wmm_ac_build_addts_req()
287 tspec->oui[1] = 0x50; in wmm_ac_build_addts_req()
288 tspec->oui[2] = 0xf2; in wmm_ac_build_addts_req()
298 tspec->ts_info[2] = 0; in wmm_ac_build_addts_req()
804 tspec); in wmm_ac_rx_action()
[all …]
H A Dwmm_ac.h108 struct wmm_tspec_element tspec; member
/freebsd-14.2/contrib/wpa/src/ap/
H A Dwmm.c182 const struct wmm_tspec_element *tspec, in wmm_send_action() argument
219 up = (tspec->ts_info[1] >> 3) & 0x07; in wmm_process_tspec()
220 psb = (tspec->ts_info[1] >> 2) & 0x01; in wmm_process_tspec()
221 dir = (tspec->ts_info[0] >> 5) & 0x03; in wmm_process_tspec()
222 tid = (tspec->ts_info[0] >> 1) & 0x0f; in wmm_process_tspec()
225 val = le_to_host16(tspec->nominal_msdu_size); in wmm_process_tspec()
229 le_to_host32(tspec->mean_data_rate)); in wmm_process_tspec()
231 le_to_host32(tspec->minimum_phy_rate)); in wmm_process_tspec()
236 val = le_to_host16(tspec->nominal_msdu_size); in wmm_process_tspec()
252 (le_to_host32(tspec->minimum_phy_rate) / 1000000) + in wmm_process_tspec()
[all …]
H A Dwmm.h21 int wmm_process_tspec(struct wmm_tspec_element *tspec);
H A Dwpa_auth_ft.c2461 struct wmm_tspec_element *tspec; in wpa_ft_process_rdie() local
2463 if (parse.wmm_tspec_len + 2 < (int) sizeof(*tspec)) { in wpa_ft_process_rdie()
2470 if (end - pos < (int) sizeof(*tspec)) { in wpa_ft_process_rdie()
2477 tspec = (struct wmm_tspec_element *) pos; in wpa_ft_process_rdie()
2478 os_memcpy(tspec, parse.wmm_tspec - 2, sizeof(*tspec)); in wpa_ft_process_rdie()
/freebsd-14.2/sys/sys/
H A Dtimepps.h39 struct timespec tspec; member
62 #define assert_timestamp assert_tu.tspec
63 #define clear_timestamp clear_tu.tspec
75 #define assert_offset assert_off_tu.tspec
76 #define clear_offset clear_off_tu.tspec
/freebsd-14.2/contrib/ntp/include/
H A Dtimepps-SCO.h141 struct timespec tspec; member
158 #define assert_timestamp assert_tu.tspec
159 #define clear_timestamp clear_tu.tspec
175 #define assert_offset assert_off_tu.tspec
176 #define clear_offset clear_off_tu.tspec
H A Dtimepps-SunOS.h141 struct timespec tspec; member
158 #define assert_timestamp assert_tu.tspec
159 #define clear_timestamp clear_tu.tspec
175 #define assert_offset assert_off_tu.tspec
176 #define clear_offset clear_off_tu.tspec
H A Dtimepps-Solaris.h141 struct timespec tspec; member
158 #define assert_timestamp assert_tu.tspec
159 #define clear_timestamp clear_tu.tspec
175 #define assert_offset assert_off_tu.tspec
176 #define clear_offset clear_off_tu.tspec
/freebsd-14.2/bin/cp/
H A Dutils.c321 static struct timespec tspec[2]; in setfile() local
331 tspec[0] = fs->st_atim; in setfile()
332 tspec[1] = fs->st_mtim; in setfile()
333 if (fdval ? futimens(fd, tspec) : utimensat(AT_FDCWD, to.p_path, tspec, in setfile()
/freebsd-14.2/usr.bin/compress/
H A Dcompress.c366 static struct timespec tspec[2]; in setfile() local
370 tspec[0] = fs->st_atim; in setfile()
371 tspec[1] = fs->st_mtim; in setfile()
372 if (utimensat(AT_FDCWD, name, tspec, 0)) in setfile()