Lines Matching refs:flags
45 if (FIELD_GET(RTIO_SQE_CANCELED, iodev_sqe->sqe.flags)) { in rtio_iodev_submit()
75 if (iodev_sqe->sqe.flags & RTIO_SQE_CANCELED) { in rtio_executor_submit()
76 iodev_sqe->sqe.flags |= cancel_no_response; in rtio_executor_submit()
83 while (curr->sqe.flags & (RTIO_SQE_TRANSACTION | RTIO_SQE_CHAINED)) { in rtio_executor_submit()
85 bool transaction = iodev_sqe->sqe.flags & RTIO_SQE_TRANSACTION; in rtio_executor_submit()
86 bool chained = iodev_sqe->sqe.flags & RTIO_SQE_CHAINED; in rtio_executor_submit()
87 bool multishot = iodev_sqe->sqe.flags & RTIO_SQE_MULTISHOT; in rtio_executor_submit()
104 if (curr->sqe.flags & RTIO_SQE_CANCELED) { in rtio_executor_submit()
105 next->sqe.flags |= cancel_no_response; in rtio_executor_submit()
136 const bool is_canceled = FIELD_GET(RTIO_SQE_CANCELED, iodev_sqe->sqe.flags) == 1; in rtio_executor_handle_multishot()
137 const bool uses_mempool = FIELD_GET(RTIO_SQE_MEMPOOL_BUFFER, iodev_sqe->sqe.flags) == 1; in rtio_executor_handle_multishot()
138 const bool requires_response = FIELD_GET(RTIO_SQE_NO_RESPONSE, iodev_sqe->sqe.flags) == 0; in rtio_executor_handle_multishot()
179 const bool is_canceled = FIELD_GET(RTIO_SQE_CANCELED, iodev_sqe->sqe.flags) == 1; in rtio_executor_handle_oneshot()
192 sqe_flags = curr->sqe.flags; in rtio_executor_handle_oneshot()
216 const bool is_multishot = FIELD_GET(RTIO_SQE_MULTISHOT, iodev_sqe->sqe.flags) == 1; in rtio_executor_done()