Home
last modified time | relevance | path

Searched refs:current_time (Results 1 – 10 of 10) sorted by relevance

/Zephyr-Core-3.5.0/scripts/footprint/
Dupload_data.py27 def create_event(data, board, feature, commit, current_time, typ, application): argument
41 "time": current_time,
125 current_time = gitcommit.committed_datetime
129 current_time = gitcommit.committed_datetime
131 print(current_time)
134 create_event(data, board, feature, commit, current_time, typ, app)
/Zephyr-Core-3.5.0/drivers/misc/timeaware_gpio/
Dtimeaware_gpio_handlers.c9 static inline int z_vrfy_tgpio_port_get_time(const struct device *port, uint64_t *current_time) in z_vrfy_tgpio_port_get_time() argument
12 Z_OOPS(Z_SYSCALL_MEMORY_WRITE(current_time, sizeof(uint64_t))); in z_vrfy_tgpio_port_get_time()
13 return z_impl_tgpio_port_get_time((const struct device *)port, (uint64_t *)current_time); in z_vrfy_tgpio_port_get_time()
Dtimeaware_gpio_intel.c68 uint64_t *current_time) in tgpio_intel_get_time() argument
70 *current_time = sys_read32(regs(dev) + ART_L); in tgpio_intel_get_time()
71 *current_time += ((uint64_t)sys_read32(regs(dev) + ART_H) << UINT32_SIZE); in tgpio_intel_get_time()
/Zephyr-Core-3.5.0/include/zephyr/drivers/misc/timeaware_gpio/
Dtimeaware_gpio.h52 int (*get_time)(const struct device *dev, uint64_t *current_time);
74 __syscall int tgpio_port_get_time(const struct device *dev, uint64_t *current_time);
76 static inline int z_impl_tgpio_port_get_time(const struct device *dev, uint64_t *current_time) in z_impl_tgpio_port_get_time() argument
80 return api->get_time(dev, current_time); in z_impl_tgpio_port_get_time()
/Zephyr-Core-3.5.0/drivers/console/
Dgsm_mux.c451 static void dlci_run_timer(uint32_t current_time) in dlci_run_timer() argument
461 dlci->mux->t1_timeout_value - current_time; in dlci_run_timer()
544 uint32_t current_time = k_uptime_get_32(); in dlci_t1_timeout() local
553 entry->mux->t1_timeout_value - current_time) > 0) { in dlci_t1_timeout()
564 dlci_run_timer(current_time); in dlci_t1_timeout()
612 uint32_t current_time = k_uptime_get_32(); in gsm_mux_t2_timeout() local
617 if ((int32_t)(entry->req_start + T2_MSEC - current_time) > 0) { in gsm_mux_t2_timeout()
632 K_MSEC(entry->req_start + T2_MSEC - current_time)); in gsm_mux_t2_timeout()
/Zephyr-Core-3.5.0/drivers/counter/
Drtc_mcp7940n.c488 time_t current_time; in mcp7940n_counter_set_alarm() local
512 rc = read_time(dev, &current_time); in mcp7940n_counter_set_alarm()
517 alarm_time = current_time + seconds_until_alarm; in mcp7940n_counter_set_alarm()
548 data->counter_ticks[alarm_id] = current_time; in mcp7940n_counter_set_alarm()
/Zephyr-Core-3.5.0/subsys/mgmt/ec_host_cmd/backends/
Dec_host_cmd_backend_spi_stm32.c541 int64_t current_time; in wait_for_rx_bytes() local
548 current_time = k_ticks_to_us_floor64(k_uptime_ticks()); in wait_for_rx_bytes()
568 if (current_time >= deadline) { in wait_for_rx_bytes()
/Zephyr-Core-3.5.0/subsys/net/l2/ethernet/gptp/
Dgptp_mi.c940 uint64_t current_time; in gptp_mi_set_ps_sync_cmss() local
949 current_time = gptp_get_current_master_time_nanosecond(); in gptp_mi_set_ps_sync_cmss()
951 sync_info->precise_orig_ts.second = current_time / NSEC_PER_SEC; in gptp_mi_set_ps_sync_cmss()
952 sync_info->precise_orig_ts.nanosecond = current_time % NSEC_PER_SEC; in gptp_mi_set_ps_sync_cmss()
1000 uint64_t current_time; in gptp_mi_clk_master_sync_snd_state_machine() local
1012 current_time = gptp_get_current_master_time_nanosecond(); in gptp_mi_clk_master_sync_snd_state_machine()
1014 if (current_time >= state->sync_send_time.low) { in gptp_mi_clk_master_sync_snd_state_machine()
/Zephyr-Core-3.5.0/subsys/net/ip/
Dnet_if.c781 uint32_t current_time = k_uptime_get_32(); in iface_router_expired() local
791 int32_t ends = iface_router_ends(router, current_time); in iface_router_expired()
807 iface_router_update_timer(current_time); in iface_router_expired()
1170 uint32_t current_time = k_uptime_get_32(); in dad_timeout() local
1187 DAD_TIMEOUT - current_time); in dad_timeout()
1366 uint32_t current_time = k_uptime_get_32(); in rs_timeout() local
1382 delay = (int32_t)(ipv6->rs_start + RS_TIMEOUT - current_time); in rs_timeout()
1396 RS_TIMEOUT - current_time)); in rs_timeout()
1615 uint32_t current_time = k_uptime_get_32(); in address_lifetime_timeout() local
1626 current_time); in address_lifetime_timeout()
[all …]
Droute.c500 uint32_t current_time = k_uptime_get_32(); in route_lifetime_timeout() local
511 current_time); in route_lifetime_timeout()