/Zephyr-latest/drivers/i2c/ |
D | i2c_sc18im704.h | 48 * @retval 0 Device claimed. 49 * @retval -EBUSY The device could not be claimed. 61 * @retval -EPERM The current thread hasn't claimed the device.
|
/Zephyr-latest/samples/subsys/zbus/uart_bridge/ |
D | README.rst | 41 D: Channel start_measurement claimed 44 D: Channel sensor_data claimed 50 D: Channel start_measurement claimed 56 D: Channel sensor_data claimed
|
/Zephyr-latest/include/zephyr/sys/ |
D | spsc_pbuf.h | 228 * by the @ref spsc_pbuf_commit function. The first committed packet will be claimed first. 230 * Claimed packet must be freed using the @ref spsc_pbuf_free function. 234 * @param[in] pb A buffer from which packet will be claimed. 235 * @param[in,out] buf A location where claimed packet address is written. 246 * Packet must be claimed (@ref spsc_pbuf_claim) before it can be freed. 248 * @param pb A packet buffer from which packet was claimed. 249 * @param len Claimed packet length.
|
D | mpsc_pbuf.h | 36 * dropping is currently being claimed. In that case, it is omitted and next 37 * packet is dropped and claimed packet is marked as invalid when freeing. 39 * Reading packets is performed in two steps. First packet is claimed. Claiming 230 * @return Pointer to the claimed packet or null if none available.
|
D | mutex.h | 114 * The mutex cannot be claimed by another thread until it has been unlocked by
|
D | ring_buffer.h | 362 * @brief Indicate number of bytes read from claimed buffer.
|
/Zephyr-latest/samples/subsys/zbus/remote_mock/ |
D | README.rst | 40 D: Channel start_measurement claimed 44 D: Channel start_measurement claimed 49 D: Channel sensor_data claimed
|
/Zephyr-latest/subsys/tracing/include/ |
D | tracing_buffer.h | 88 * @brief Indicate number of bytes read from claimed buffer. 90 * @param size Number of bytes read from claimed buffer.
|
/Zephyr-latest/tests/lib/mpsc_pbuf/src/ |
D | main.c | 800 * skip claimed packed and drop the next one. in overwrite_while_claimed() 853 * skip claimed packed and drop the next one. in overwrite_while_claimed2() 960 /* Put back item claimed before committing new items. */ in ZTEST() 1083 const union mpsc_pbuf_generic *claimed; in check_packet() local 1085 claimed = mpsc_pbuf_claim(buffer); in check_packet() 1086 zassert_true(claimed, NULL); in check_packet() 1087 claimed_item.item = *claimed; in check_packet() 1090 mpsc_pbuf_free(buffer, claimed); in check_packet() 1097 const union mpsc_pbuf_generic *claimed; in ZTEST() local 1135 claimed = mpsc_pbuf_claim(&buffer); in ZTEST() [all …]
|
/Zephyr-latest/drivers/dai/intel/dmic/ |
D | Kconfig.dmic | 49 dmic ownership must be claimed before use of dmic
|
/Zephyr-latest/include/zephyr/drivers/serial/ |
D | uart_async_rx.h | 160 /** @brief Consume claimed data. 165 * @param length Amount of data to consume. It must be less or equal than amount of claimed data.
|
/Zephyr-latest/doc/kernel/data_structures/ |
D | mpsc_pbuf.rst | 40 * busy - bit set when packet is being consumed (claimed but not free) 51 | 1 | 1 | claimed valid packet |
|
/Zephyr-latest/lib/os/ |
D | mpsc_pbuf.c | 209 /* Add skip packet before claimed packet. */ in drop_item_locked() 214 /* Move all indexes forward, after claimed packet. */ in drop_item_locked() 569 MPSC_PBUF_DBG(buffer, ">>claimed %d: %p", a, item); in mpsc_pbuf_claim() 591 * at claimed item. In that case tmp_rd_idx points at in mpsc_pbuf_free()
|
/Zephyr-latest/include/zephyr/drivers/usb/ |
D | udc.h | 194 /** Flag marks request buffer claimed by the controller (TBD) */ 195 unsigned int claimed : 1; member 625 * buffer can be claimed by the controller immediately. 642 * releases claimed buffer, no new requests will be claimed,
|
D | uhc.h | 440 * can be claimed by the controller immediately.
|
/Zephyr-latest/tests/lib/ringbuffer/src/ |
D | main.c | 920 uint32_t claimed; in ZTEST() local 927 claimed = ring_buf_put_claim(&buf_ii, &data, halfsize); in ZTEST() 928 zassert_equal(claimed, halfsize); in ZTEST() 929 ring_buf_put_finish(&buf_ii, claimed); in ZTEST() 931 claimed = ring_buf_get_claim(&buf_ii, &data, halfsize); in ZTEST() 932 zassert_equal(claimed, halfsize); in ZTEST() 933 ring_buf_get_finish(&buf_ii, claimed); in ZTEST()
|
/Zephyr-latest/doc/kernel/services/synchronization/ |
D | mutexes.rst | 59 of times before the mutex becomes fully unlocked so it can be claimed
|
/Zephyr-latest/tests/drivers/sdhc/src/ |
D | main.c | 77 /* Verify that driver rejects frequencies outside of claimed range */
|
/Zephyr-latest/include/zephyr/ipc/ |
D | ipc_service_backend.h | 133 * @retval -EALREADY when a buffer was already claimed and not yet released.
|
D | ipc_service.h | 361 * @retval -EALREADY when a buffer was already claimed and not yet released.
|
/Zephyr-latest/include/zephyr/logging/ |
D | log_frontend_stmesp_demux.h | 271 /** @brief Free previously claimed packet.
|
/Zephyr-latest/dts/bindings/ethernet/ |
D | xlnx,gem.yaml | 57 PHY will be claimed by the driver, watch out in case of shared MDIO
|
/Zephyr-latest/tests/subsys/zbus/integration/src/ |
D | main.c | 315 zassert_equal(err, -EAGAIN, "Channel must be busy and could no be claimed %d", err); in ZTEST()
|
/Zephyr-latest/subsys/pm/ |
D | device_runtime.c | 222 /* Power domain successfully claimed */ in pm_device_runtime_get()
|
/Zephyr-latest/include/zephyr/zbus/ |
D | zbus.h | 97 /** User data available to extend zbus features. The channel must be claimed before 610 * @retval 0 Channel claimed.
|