Searched full:consumed (Results 1 – 25 of 92) sorted by relevance
1234
/Zephyr-latest/samples/subsys/rtio/sensor_batch_processing/ |
D | README.rst | 48 D: Consumed completion event 0 49 D: Consumed completion event 1 50 D: Consumed completion event 2 51 D: Consumed completion event 3 74 D: Consumed completion event 0
|
/Zephyr-latest/include/zephyr/drivers/serial/ |
D | uart_async_rx.h | 52 /* Current buffer from which data is being consumed. */ 55 /* Current read index in the buffer from which data is being consumed. 56 * Read index which is incremented whenever data is consumed from the buffer. 127 * buffers are used by the driver or contain not consumed data. 149 * consumed in chunks. After data is processed, @ref uart_async_rx_data_consume is 150 * used to indicate that data is consumed. 167 * @retval true If there are free buffers in the pool after data got consumed.
|
/Zephyr-latest/subsys/mgmt/mcumgr/transport/src/ |
D | smp_shell.c | 142 size_t consumed = 0; /* Number of bytes consumed by SMP */ in smp_shell_rx_bytes() local 145 while (size != consumed) { in smp_shell_rx_bytes() 146 uint8_t byte = bytes[consumed]; in smp_shell_rx_bytes() 180 ++consumed; in smp_shell_rx_bytes() 183 return consumed; in smp_shell_rx_bytes()
|
/Zephyr-latest/include/zephyr/sys/ |
D | spsc_lockfree.h | 242 * @brief Release a consumed element 244 * @param spsc SPSC to release consumed element or do nothing 255 * @brief Release all consumed elements 257 * @param spsc SPSC to release consumed elements or do nothing 262 unsigned long consumed = (spsc)->_spsc.consume; \ 264 atomic_add(&(spsc)->_spsc.out, consumed); \
|
/Zephyr-latest/subsys/net/ip/ |
D | canbus_socket.h | 23 * @return NET_OK if the packet was consumed, NET_DROP if
|
D | packet_socket.h | 23 * @return NET_OK if the packet was consumed, NET_DROP if
|
/Zephyr-latest/dts/bindings/sensor/ |
D | nxp,fxas21002-common.yaml | 13 This pin defaults to active low when consumed by the sensor.
|
D | nxp,fxls8974-common.yaml | 13 This pin defaults to active high when consumed by the sensor.
|
D | nxp,fxos8700-common.yaml | 13 This pin defaults to active high when consumed by the sensor.
|
/Zephyr-latest/dts/bindings/sdhc/ |
D | zephyr,sdhc-spi-slot.yaml | 34 This pin defaults to active high when consumed by the SPI SDHC driver.
|
D | nxp,imx-usdhc.yaml | 45 This pin defaults to active high when consumed by the SD card. The
|
/Zephyr-latest/subsys/lorawan/services/ |
D | Kconfig | 112 the payload are consumed for protocol information. 133 the payload are consumed for protocol information.
|
/Zephyr-latest/drivers/dma/ |
D | dma_nxp_edma.h | 116 * less data in said buffer (data is consumed with 125 * signal that an amount of data has been consumed 140 * (in the case of consumer channels) or consumed 351 * provide a way for the user to determine if data is consumed at a 355 * that data has been consumed (i.e: data has been transferred to the 359 * has consumed data. 391 * if data is produced at a higher rate than it is being consumed.
|
/Zephyr-latest/tests/lib/mpsc_pbuf/src/ |
D | concurrent.c | 87 /* Already consumed. */ in track_consume() 88 printk("already consumed\n"); in track_consume() 96 /* Far in the past should all be consumed by now. */ in track_consume() 213 * validates that each produced packet is consumed or dropped.
|
/Zephyr-latest/include/zephyr/mgmt/mcumgr/transport/ |
D | smp_shell.h | 40 * @return number of bytes consumed by the SMP
|
/Zephyr-latest/include/zephyr/linker/ |
D | intlist.ld | 8 * instead it is consumed by the gen_isr_tables.py script.
|
/Zephyr-latest/include/zephyr/shell/ |
D | shell_rpmsg.h | 54 /** The number of bytes consumed from rx_cur */
|
/Zephyr-latest/subsys/bluetooth/controller/util/ |
D | dbuf.c | 32 /* LLL has not consumed the first PDU. Revert back the `last` so in dbuf_alloc()
|
/Zephyr-latest/doc/kernel/data_structures/ |
D | mpsc_pbuf.rst | 40 * busy - bit set when packet is being consumed (claimed but not free) 74 header to ensure that currently consumed packet is not overwritten. In that case,
|
/Zephyr-latest/lib/heap/ |
D | heap_validate.c | 85 return false; /* Should have exactly consumed the buffer */ in sys_heap_validate() 156 return false; /* Should have exactly consumed the buffer */ in sys_heap_validate()
|
/Zephyr-latest/samples/subsys/rtio/sensor_batch_processing/src/ |
D | main.c | 57 LOG_DBG("Consumed completion event %d", m); in main()
|
/Zephyr-latest/include/zephyr/drivers/ |
D | ipm.h | 114 * A message is considered consumed once the remote interrupt handler 130 * message is considered consumed once the remote interrupt handler
|
/Zephyr-latest/samples/subsys/zbus/confirmed_channel/src/ |
D | main.c | 115 /* Wait for channel be consumed */ in pub_to_confirmed_channel()
|
/Zephyr-latest/doc/services/llext/ |
D | config.rst | 100 nature of string comparisons, and the size consumed by the table can become
|
/Zephyr-latest/drivers/serial/ |
D | uart_async_rx.c | 113 /* Attempt to release the buffer if it is completed and all data is consumed. */ in uart_async_rx_data_consume()
|
1234