Home
last modified time | relevance | path

Searched refs:tv_now (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-3.6.0/components/lwip/apps/sntp/
Dsntp.c41 struct timeval tv_now; in sntp_sync_time() local
42 gettimeofday(&tv_now, NULL); in sntp_sync_time()
43 int64_t cpu_time = (int64_t)tv_now.tv_sec * 1000000L + (int64_t)tv_now.tv_usec; in sntp_sync_time()
/hal_espressif-3.6.0/examples/protocols/sntp/main/
Dsntp_example_main.c71 struct timeval tv_now; in app_main() local
72 gettimeofday(&tv_now, NULL); in app_main()
73 int64_t cpu_time = (int64_t)tv_now.tv_sec * 1000000L + (int64_t)tv_now.tv_usec; in app_main()
/hal_espressif-3.6.0/components/esp_timer/test/
Dtest_ets_timer.c70 struct timeval tv_now; in test_periodic_correct_delays_timer_func() local
71 gettimeofday(&tv_now, NULL); in test_periodic_correct_delays_timer_func()
72 int32_t ms_diff = (tv_now.tv_sec - p_args->tv_start.tv_sec) * 1000 + in test_periodic_correct_delays_timer_func()
73 (tv_now.tv_usec - p_args->tv_start.tv_usec) / 1000; in test_periodic_correct_delays_timer_func()
/hal_espressif-3.6.0/examples/network/simple_sniffer/main/
Dcmd_sniffer.c153 struct timeval tv_now; in eth_sniffer_cb() local
157 gettimeofday(&tv_now, NULL); in eth_sniffer_cb()
159 packet_info.seconds = tv_now.tv_sec; in eth_sniffer_cb()
160 packet_info.microseconds = tv_now.tv_usec; in eth_sniffer_cb()
/hal_espressif-3.6.0/docs/en/api-reference/system/
Dsystem_time.rst88 struct timeval tv_now;
89 gettimeofday(&tv_now, NULL);
90 int64_t time_us = (int64_t)tv_now.tv_sec * 1000000L + (int64_t)tv_now.tv_usec;