Lines Matching refs:state
110 * @is_atomic: Flag to state if the transport of this instance is atomic
691 * scmi_msg_response_validate - Validate message type against state of related
698 * This function checks if @msg_type is congruent with the current state of
726 switch (xfer->state) {
731 * Assume message RESPONSE was OK and skip state.
734 xfer->state = SCMI_XFER_RESP_OK;
754 * scmi_xfer_state_update - Update xfer state
760 * by @scmi_msg_response_validate(), so here we just update the state.
771 xfer->state = SCMI_XFER_RESP_OK;
773 xfer->state = SCMI_XFER_DRESP_OK;
824 * If a pending xfer was found which was also in a congruent state with
838 "Invalid message type:%d for %d - HDR:0x%X state:%d\n",
839 msg_type, xfer_id, msg_hdr, xfer->state);
1066 if (xfer->state == SCMI_XFER_SENT_OK) {
1068 xfer->state = SCMI_XFER_RESP_OK;
1204 xfer->state = SCMI_XFER_SENT_OK;
1207 * on xfer->state due to the monotonically increasing tokens allocation,
1208 * we must anyway ensure xfer->state initialization is not re-ordered
1210 * ISR calling scmi_rx_callback() cannot see an old stale xfer->state.
1486 * @state: The current iterator state; used and updated in turn by the iterators
1497 struct scmi_iterator_state state;
1523 i->state.max_resources = max_resources;
1543 st = &i->state;