/Zephyr-latest/tests/subsys/logging/log_blocking/ |
D | testcase.yaml | 9 logging.blocking.rate.input_limited: 13 logging.blocking.rate.matched: 17 logging.blocking.rate.output_limited: 21 logging.blocking.rate.stalled:
|
D | prj.conf | 23 # Enable blocking in thread
|
/Zephyr-latest/drivers/serial/ |
D | Kconfig.nxp_s32 | 18 int "The maximum duration to transfer a byte data in blocking mode" 21 Maximum duration in micro-seconds to transfer a byte data in blocking mode. 24 int "The maximum duration to receive a byte data in blocking mode" 27 Maximum duration in micro-seconds to receive a byte data in blocking mode.
|
/Zephyr-latest/tests/benchmarks/latency_measure/ |
D | README.rst | 74 …fifo.get.blocking.k_to_k - Get data from FIFO (w/ ctx switch) : … 76 …fifo.get.free.blocking.k_to_k - Free when getting data from FIFO (w/ ctx siwtch) : … 82 …lifo.get.blocking.k_to_k - Get data from LIFO (w/ ctx switch) : … 84 …lifo.get.free.blocking.k_to_k - Free when getting data from LIFO (w/ ctx switch) : … 90 …events.wait.blocking.k_to_k - Wait for any events (w/ ctx switch) : … 92 …events.wait_all.blocking.k_to_k - Wait for all events (w/ ctx switch) : … 95 …semaphore.take.immediate.kernel - Take a semaphore (no blocking) : … 96 …semaphore.take.blocking.k_to_k - Take a semaphore (context switch) : … 98 …condvar.wait.blocking.k_to_k - Wait for a condvar (context switch) : … 102 …stack.pop.blocking.k_to_k - Get data from k_stack (w/ ctx switch) : … [all …]
|
/Zephyr-latest/tests/subsys/rtio/rtio_i2c/dts/bindings/ |
D | zephyr,blocking-emul.yaml | 5 A generic blocking target device used for testing async RTIO APIs 7 compatible: "zephyr,blocking-emul"
|
/Zephyr-latest/tests/subsys/rtio/rtio_i2c/boards/ |
D | native_sim.overlay | 6 blocking_emul: blocking-emul@80 { 7 compatible = "zephyr,blocking-emul";
|
/Zephyr-latest/dts/bindings/i2c/ |
D | i2c-controller.yaml | 23 description: Size of the submission queue for blocking requests 27 description: Size of the completion queue for blocking requests
|
/Zephyr-latest/drivers/i3c/ |
D | Kconfig | 130 int "Submission queue size for blocking calls" 133 Blocking i3c calls when I3C_RTIO is enabled are copied into a per driver 140 int "Completion queue size for blocking calls" 143 Blocking i3c calls when I3C_RTIO is enabled are copied into a per driver
|
/Zephyr-latest/doc/hardware/peripherals/sensor/ |
D | index.rst | 62 * SHOULD implement attribute setting in a blocking manner. 71 * SHOULD implement :c:type:`sensor_sample_fetch_t` as a blocking call that 83 * MUST implement :c:type:`sensor_submit_t` as a non-blocking call. 84 * SHOULD implement :c:type:`sensor_submit_t` using :ref:`rtio` to do non-blocking bus transfers if …
|
/Zephyr-latest/include/zephyr/drivers/i3c/ |
D | rtio.h | 92 * @brief Transfer i3c messages in a blocking call 103 * @brief Perform an I3C bus recovery in a blocking call 113 * @brief Perform an I3C CCC in a blocking call
|
/Zephyr-latest/subsys/shell/backends/ |
D | shell_rpmsg.c | 88 static int enable(const struct shell_transport *transport, bool blocking) in enable() argument 96 sh_rpmsg->blocking = blocking; in enable() 113 if (sh_rpmsg->blocking) { in write()
|
/Zephyr-latest/samples/net/sockets/echo_service/ |
D | README.rst | 14 The socket service is a concept where many blocking sockets can be listened by 49 to it. The application implements a single-threaded server using blocking
|
/Zephyr-latest/samples/net/sockets/echo_async_select/ |
D | sample.yaml | 2 description: BSD Sockets API TCP echo server sample using non-blocking sockets
|
/Zephyr-latest/subsys/input/ |
D | input.c | 57 LOG_DBG("Timeout discarded. No blocking in syswq."); in input_report() 63 LOG_WRN("Event dropped, queue full, not blocking in syswq."); in input_report()
|
/Zephyr-latest/drivers/flash/ |
D | Kconfig.nrf | 53 slices instead of blocking MCU, for the time it is needed to 80 blocking mode.
|
/Zephyr-latest/include/zephyr/shell/ |
D | shell_rpmsg.h | 39 /** Setting for blocking mode */ 40 bool blocking; member
|
/Zephyr-latest/samples/subsys/canbus/isotp/ |
D | README.rst | 15 The send function call for the short message is non-blocking, and the send 16 function call for the long message is blocking.
|
/Zephyr-latest/samples/net/sockets/echo_async/ |
D | sample.yaml | 2 description: BSD Sockets API TCP echo server sample using non-blocking sockets
|
/Zephyr-latest/drivers/i2c/ |
D | Kconfig | 81 int "Submission queue size for blocking calls" 84 Blocking i2c calls when I2C_RTIO is enabled are copied into a per driver 91 int "Completion queue size for blocking calls" 94 Blocking i2c calls when I2C_RTIO is enabled are copied into a per driver
|
D | Kconfig.ifx_cat1 | 30 Configure the I2C driver to be non-blocking/Asynchronous mode.
|
/Zephyr-latest/tests/kernel/workq/work/src/ |
D | main.c | 76 * * The blocking one (rel_handler) waits until something invokes 284 /* Basic single-CPU check submitting with a non-blocking handler. */ 289 /* Reset state and use the non-blocking handler */ in ZTEST() 316 /* Basic SMP check submitting with a non-blocking handler. */ 326 /* Reset state and use the non-blocking handler */ in ZTEST() 352 /* Basic single-CPU check submitting with a blocking handler */ 357 /* Reset state and use the blocking handler */ in ZTEST() 395 /* Reset state and use the blocking handler */ in ZTEST() 505 /* Reset state and use non-blocking handler */ in ZTEST() 537 /* Reset state and use the blocking handler */ in ZTEST() [all …]
|
/Zephyr-latest/doc/hardware/peripherals/ |
D | uart.rst | 17 function, :c:func:`uart_poll_in`, is a non-blocking function and returns a character 19 :c:func:`uart_poll_out`, is a blocking function and the thread waits until the given
|
/Zephyr-latest/subsys/rtio/ |
D | Kconfig.workq | 10 in an asynchronous non-blocking fashion.
|
/Zephyr-latest/tests/kernel/pipe/pipe_api/src/ |
D | test_pipe_avail.c | 73 * As shown above, the pipe will be able to read 3 bytes without blocking 74 * and write 5 bytes without blocking. 112 * As shown above, the pipe will fbe able to read 5 bytes without blocking 113 * and write 3 bytes without blocking.
|
/Zephyr-latest/tests/drivers/flash/stm32/src/ |
D | main.c | 221 TC_PRINT("Blocking OPT\n"); in ZTEST() 224 zassert_true(flash_opt_locked(), "Blocking OPT didn't lock OPT"); in ZTEST() 238 TC_PRINT("Blocking CR\n"); in ZTEST() 240 zassert_true(flash_cr_locked(), "Blocking CR didn't lock CR"); in ZTEST()
|