Searched refs:cqe (Results 26 – 33 of 33) sorted by relevance
12
/Zephyr-latest/drivers/sensor/pixart/paa3905/ |
D | paa3905_stream.c | 57 struct rtio_cqe *cqe; in paa3905_complete_result() local 96 cqe = rtio_cqe_consume(ctx); in paa3905_complete_result() 97 if (cqe != NULL) { in paa3905_complete_result() 98 err = cqe->result; in paa3905_complete_result() 99 rtio_cqe_release(ctx, cqe); in paa3905_complete_result() 101 } while (cqe != NULL); in paa3905_complete_result()
|
/Zephyr-latest/drivers/sensor/tdk/icm45686/ |
D | icm45686.c | 127 struct rtio_cqe *cqe; in icm45686_complete_result() local 131 cqe = rtio_cqe_consume(ctx); in icm45686_complete_result() 132 if (cqe != NULL) { in icm45686_complete_result() 133 err = cqe->result; in icm45686_complete_result() 134 rtio_cqe_release(ctx, cqe); in icm45686_complete_result() 136 } while (cqe != NULL); in icm45686_complete_result()
|
D | icm45686_stream.c | 275 struct rtio_cqe *cqe; in icm45686_handle_event_actions() local 278 cqe = rtio_cqe_consume(ctx); in icm45686_handle_event_actions() 279 if (cqe != NULL) { in icm45686_handle_event_actions() 280 err = cqe->result; in icm45686_handle_event_actions() 281 rtio_cqe_release(ctx, cqe); in icm45686_handle_event_actions() 283 } while (cqe != NULL); in icm45686_handle_event_actions()
|
/Zephyr-latest/drivers/spi/ |
D | spi_rtio.c | 414 struct rtio_cqe *cqe; in spi_rtio_transceive() local 429 cqe = rtio_cqe_consume(ctx->r); in spi_rtio_transceive() 430 if (cqe->result < 0) { in spi_rtio_transceive() 431 err = cqe->result; in spi_rtio_transceive() 434 rtio_cqe_release(ctx->r, cqe); in spi_rtio_transceive()
|
/Zephyr-latest/drivers/sensor/ |
D | default_rtio_sensor.c | 297 struct rtio_cqe *cqe = rtio_cqe_consume_block(ctx); in sensor_processing_with_callback() local 300 rc = cqe->result; in sensor_processing_with_callback() 301 userdata = cqe->userdata; in sensor_processing_with_callback() 302 rtio_cqe_get_mempool_buffer(ctx, cqe, &buf, &buf_len); in sensor_processing_with_callback() 305 rtio_cqe_release(ctx, cqe); in sensor_processing_with_callback()
|
/Zephyr-latest/doc/services/rtio/ |
D | index.rst | 95 queue (cq) with completion queue events (cqe). A sqe once completed results in 96 a cqe being pushed into the cq. The ordering of cqe may not be the same order of 115 Turning submission queue entries (sqe) into completion queue events (cqe) is the 187 int rc = rtio_cqe_get_mempool_buffer(&rtio_context, &cqe, &buf, &buf_len); 194 /* Release the cqe events (note that the buffer is not released yet */
|
/Zephyr-latest/include/zephyr/drivers/ |
D | sensor.h | 1097 struct rtio_cqe *cqe = rtio_cqe_consume_block(ctx); in sensor_read() local 1098 int res = cqe->result; in sensor_read() 1100 __ASSERT(cqe->userdata == buf, in sensor_read() 1103 rtio_cqe_release(ctx, cqe); in sensor_read()
|
/Zephyr-latest/doc/releases/ |
D | release-notes-3.4.rst | 1369 * Added policy that every ``sqe`` will generate a ``cqe`` (previously an RTIO_SQE_TRANSACTION 1370 entry would only trigger a ``cqe`` on the last ``sqe`` in the transaction.
|
12