/Zephyr-Core-3.5.0/scripts/footprint/ |
D | upload_data.py | 27 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/ |
D | timeaware_gpio_handlers.c | 9 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()
|
D | timeaware_gpio_intel.c | 68 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/ |
D | timeaware_gpio.h | 52 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/ |
D | gsm_mux.c | 451 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/ |
D | rtc_mcp7940n.c | 488 time_t current_time; in mcp7940n_counter_set_alarm() local 512 rc = read_time(dev, ¤t_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/ |
D | ec_host_cmd_backend_spi_stm32.c | 541 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/ |
D | gptp_mi.c | 940 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/ |
D | net_if.c | 781 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 …]
|
D | route.c | 500 uint32_t current_time = k_uptime_get_32(); in route_lifetime_timeout() local 511 current_time); in route_lifetime_timeout()
|