Home
last modified time | relevance | path

Searched refs:ts (Results 1 – 12 of 12) sorted by relevance

/hostap-3.7.0/wpa_supplicant/utils/
Dlog2pcap.py19 def pcap_addpacket(pcap_file, ts, data): argument
22 int(ts), int(1000000 * ts) % 1000000,
45 ts = float(m.group(2)) variable
47 ts = 0
51 pcap_addpacket(pcap_file, ts, data)
/hostap-3.7.0/wlantest/
Dreadpcap.c35 h.ts = wt->write_pcap_time; in write_pcap_with_radiotap()
98 (int) hdr->ts.tv_sec, (int) hdr->ts.tv_usec, in read_cap_file()
101 wt->write_pcap_time = hdr->ts; in read_cap_file()
173 (int) hdr->ts.tv_sec, (int) hdr->ts.tv_usec, in read_wired_cap_file()
Dwritepcap.c60 h.ts = wt->write_pcap_time; in write_pcap_captured()
105 h.ts = wt->write_pcap_time; in write_pcap_decrypted()
311 timestamp = 1000000 * hdr->ts.tv_sec + hdr->ts.tv_usec; in write_pcapng_write_read()
368 gettimeofday(&h.ts, NULL); in write_pcapng_captured()
/hostap-3.7.0/src/utils/
Dos_zephyr.c14 int clock_gettime(clockid_t clock_id, struct timespec *ts);
46 struct timespec ts; in os_get_reltime() local
54 res = clock_gettime(clock_id, &ts); in os_get_reltime()
56 t->sec = ts.tv_sec; in os_get_reltime()
57 t->usec = ts.tv_nsec / 1000; in os_get_reltime()
Dos_unix.c86 struct timespec ts; in os_get_reltime() local
93 res = clock_gettime(clock_id, &ts); in os_get_reltime()
95 t->sec = ts.tv_sec; in os_get_reltime()
96 t->usec = ts.tv_nsec / 1000; in os_get_reltime()
Dos.h104 struct os_reltime *ts, in os_reltime_expired() argument
109 os_reltime_sub(now, ts, &age); in os_reltime_expired()
Deloop.c1085 struct timespec ts; in eloop_run() local
1132 ts.tv_sec = tv.sec; in eloop_run()
1133 ts.tv_nsec = tv.usec * 1000L; in eloop_run()
1166 timeout ? &ts : NULL); in eloop_run()
/hostap-3.7.0/wpa_supplicant/wpa_gui-qt4/
Dwpa_gui.pro3 TRANSLATIONS = lang/wpa_gui_de.ts
/hostap-3.7.0/src/drivers/
Ddriver_nl80211_scan.c784 struct timespec ts; in nl80211_parse_bss_info() local
789 if (clock_gettime(CLOCK_BOOTTIME, &ts) == 0) { in nl80211_parse_bss_info()
795 r->age = ((u64) ts.tv_sec * 1000000000 + in nl80211_parse_bss_info()
796 ts.tv_nsec - boottime) / 1000000; in nl80211_parse_bss_info()
/hostap-3.7.0/tests/hwsim/
Dtest_wpas_ctrl.py786 ts = ["config_methods label virtual_display virtual_push_button keypad",
790 for t in ts:
794 ts = ["uuid 12345678+9abc-def0-1234-56789abcdef0",
803 for t in ts:
/hostap-3.7.0/src/ap/
Dwpa_auth.h100 le32 ts; member
Dwpa_auth_ft.c1056 msg_ts_off = le_to_host32(msg_both->ts) - in wpa_ft_rrb_seq_chk()
1161 f_seq->ts = host_to_le32(now.sec); in wpa_ft_new_seq()
4525 now_remote.sec = le_to_host32(msg_both->ts); in wpa_ft_rrb_rx_seq_resp()