Searched full:msecs (Results 1 – 11 of 11) sorted by relevance
/Zephyr-latest/tests/subsys/pm/power_mgmt_multicore/src/ |
D | main.c | 67 int32_t msecs = k_ticks_to_ms_floor64(ticks); in pm_policy_next_state() local 69 if (msecs < ACTIVE_MSEC) { in pm_policy_next_state() 71 } else if (msecs <= IDLE_MSEC) { in pm_policy_next_state() 73 } else if (msecs <= SUSPEND_TO_IDLE_MSEC) { in pm_policy_next_state()
|
/Zephyr-latest/tests/subsys/pm/power_mgmt_soc/src/ |
D | power_mgmt.c | 63 int msecs; in pm_latency_check() local 67 msecs = (int)(latency % SEC_TO_MSEC); in pm_latency_check() 69 zassert_false(secs > 0 || msecs > MAX_EXPECTED_MS_LATENCY, in pm_latency_check() 71 secs, msecs); in pm_latency_check() 146 int msecs; in pm_exit_marker() local 153 msecs = (int)(residency_delta % SEC_TO_MSEC); in pm_exit_marker() 154 LOG_INF("PM sleep residency %d.%03d seconds", secs, msecs); in pm_exit_marker()
|
/Zephyr-latest/samples/boards/microchip/mec15xxevb_assy6853/power_management/src/ |
D | power_mgmt.c | 75 int msecs; in pm_latency_check() local 79 msecs = (int)(latency % SEC_TO_MSEC); in pm_latency_check() 80 LOG_INF("PM sleep entry latency %d.%03d seconds", secs, msecs); in pm_latency_check() 87 if (msecs > MAX_EXPECTED_MS_LATENCY) { in pm_latency_check() 179 int msecs; in pm_exit_marker() local 188 msecs = (int)(residency_delta % SEC_TO_MSEC); in pm_exit_marker() 189 LOG_INF("PM sleep residency %d.%03d seconds", secs, msecs); in pm_exit_marker()
|
/Zephyr-latest/dts/bindings/input/ |
D | kbd-matrix-common.yaml | 23 Defines the poll period in msecs between between matrix scans, set to 0 29 Defines the poll period in msecs between matrix scans when the matrix is
|
/Zephyr-latest/subsys/net/lib/tftp/ |
D | Kconfig | 34 TFTPC_REQUEST_TIMEOUT msecs for the data to arrive from the TFTP Server.
|
/Zephyr-latest/drivers/modem/ |
D | modem_socket.c | 266 int msecs) in modem_socket_poll() argument 304 if (msecs >= 0) { in modem_socket_poll() 305 timeout = K_MSEC(msecs); in modem_socket_poll()
|
D | modem_socket.h | 81 int msecs);
|
D | simcom-sim7080.c | 561 static int offload_poll(struct zsock_pollfd *fds, int nfds, int msecs) in offload_poll() argument 587 return modem_socket_poll(&mdata.socket_config, fds, nfds, msecs); in offload_poll()
|
/Zephyr-latest/drivers/wifi/eswifi/ |
D | eswifi_socket_offload.c | 466 static int eswifi_socket_poll(struct zsock_pollfd *fds, int nfds, int msecs) in eswifi_socket_poll() argument 522 if (msecs == SYS_FOREVER_MS) { in eswifi_socket_poll() 525 timeout = K_MSEC(msecs); in eswifi_socket_poll()
|
/Zephyr-latest/drivers/wifi/simplelink/ |
D | simplelink_sockets.c | 559 static int simplelink_poll(struct zsock_pollfd *fds, int nfds, int msecs) in simplelink_poll() argument 574 if (msecs == SYS_FOREVER_MS) { in simplelink_poll() 577 tv.tv_sec = msecs / ONE_THOUSAND; in simplelink_poll() 578 tv.tv_usec = (msecs % ONE_THOUSAND) * ONE_THOUSAND; in simplelink_poll()
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | harness.py | 392 '--log-file-format=%(asctime)s.%(msecs)03d:%(levelname)s:%(name)s: %(message)s',
|