Home
last modified time | relevance | path

Searched full:claimed (Results 1 – 25 of 31) sorted by relevance

12

/Zephyr-latest/drivers/i2c/
Di2c_sc18im704.h48 * @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/
DREADME.rst41 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/
Dspsc_pbuf.h228 * 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.
Dmpsc_pbuf.h36 * 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.
Dmutex.h114 * The mutex cannot be claimed by another thread until it has been unlocked by
Dring_buffer.h362 * @brief Indicate number of bytes read from claimed buffer.
/Zephyr-latest/samples/subsys/zbus/remote_mock/
DREADME.rst40 D: Channel start_measurement claimed
44 D: Channel start_measurement claimed
49 D: Channel sensor_data claimed
/Zephyr-latest/subsys/tracing/include/
Dtracing_buffer.h88 * @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/
Dmain.c800 * 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/
DKconfig.dmic49 dmic ownership must be claimed before use of dmic
/Zephyr-latest/include/zephyr/drivers/serial/
Duart_async_rx.h160 /** @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/
Dmpsc_pbuf.rst40 * busy - bit set when packet is being consumed (claimed but not free)
51 | 1 | 1 | claimed valid packet |
/Zephyr-latest/lib/os/
Dmpsc_pbuf.c209 /* 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/
Dudc.h194 /** 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,
Duhc.h440 * can be claimed by the controller immediately.
/Zephyr-latest/tests/lib/ringbuffer/src/
Dmain.c920 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/
Dmutexes.rst59 of times before the mutex becomes fully unlocked so it can be claimed
/Zephyr-latest/tests/drivers/sdhc/src/
Dmain.c77 /* Verify that driver rejects frequencies outside of claimed range */
/Zephyr-latest/include/zephyr/ipc/
Dipc_service_backend.h133 * @retval -EALREADY when a buffer was already claimed and not yet released.
Dipc_service.h361 * @retval -EALREADY when a buffer was already claimed and not yet released.
/Zephyr-latest/include/zephyr/logging/
Dlog_frontend_stmesp_demux.h271 /** @brief Free previously claimed packet.
/Zephyr-latest/dts/bindings/ethernet/
Dxlnx,gem.yaml57 PHY will be claimed by the driver, watch out in case of shared MDIO
/Zephyr-latest/tests/subsys/zbus/integration/src/
Dmain.c315 zassert_equal(err, -EAGAIN, "Channel must be busy and could no be claimed %d", err); in ZTEST()
/Zephyr-latest/subsys/pm/
Ddevice_runtime.c222 /* Power domain successfully claimed */ in pm_device_runtime_get()
/Zephyr-latest/include/zephyr/zbus/
Dzbus.h97 /** User data available to extend zbus features. The channel must be claimed before
610 * @retval 0 Channel claimed.

12