Home
last modified time | relevance | path

Searched full:blocking (Results 1 – 25 of 216) sorted by relevance

123456789

/Zephyr-latest/tests/subsys/logging/log_blocking/
Dtestcase.yaml9 logging.blocking.rate.input_limited:
13 logging.blocking.rate.matched:
17 logging.blocking.rate.output_limited:
21 logging.blocking.rate.stalled:
Dprj.conf23 # Enable blocking in thread
/Zephyr-latest/drivers/serial/
DKconfig.nxp_s3218 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/
DREADME.rst74 …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/
Dzephyr,blocking-emul.yaml5 A generic blocking target device used for testing async RTIO APIs
7 compatible: "zephyr,blocking-emul"
/Zephyr-latest/tests/subsys/rtio/rtio_i2c/boards/
Dnative_sim.overlay6 blocking_emul: blocking-emul@80 {
7 compatible = "zephyr,blocking-emul";
/Zephyr-latest/dts/bindings/i2c/
Di2c-controller.yaml23 description: Size of the submission queue for blocking requests
27 description: Size of the completion queue for blocking requests
/Zephyr-latest/drivers/i3c/
DKconfig130 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/
Dindex.rst62 * 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/
Drtio.h92 * @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/
Dshell_rpmsg.c88 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/
DREADME.rst14 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/
Dsample.yaml2 description: BSD Sockets API TCP echo server sample using non-blocking sockets
/Zephyr-latest/subsys/input/
Dinput.c57 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/
DKconfig.nrf53 slices instead of blocking MCU, for the time it is needed to
80 blocking mode.
/Zephyr-latest/include/zephyr/shell/
Dshell_rpmsg.h39 /** Setting for blocking mode */
40 bool blocking; member
/Zephyr-latest/samples/subsys/canbus/isotp/
DREADME.rst15 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/
Dsample.yaml2 description: BSD Sockets API TCP echo server sample using non-blocking sockets
/Zephyr-latest/drivers/i2c/
DKconfig81 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
DKconfig.ifx_cat130 Configure the I2C driver to be non-blocking/Asynchronous mode.
/Zephyr-latest/tests/kernel/workq/work/src/
Dmain.c76 * * 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/
Duart.rst17 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/
DKconfig.workq10 in an asynchronous non-blocking fashion.
/Zephyr-latest/tests/kernel/pipe/pipe_api/src/
Dtest_pipe_avail.c73 * 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/
Dmain.c221 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()

123456789