Lines Matching defs:previous
776 * Does not modify the state of aborted commands. Returns the previous command
782 enum srpt_command_state previous;
784 previous = ioctx->state;
785 if (previous != SRPT_STATE_DONE)
788 return previous;
797 * Returns true if and only if the previous command state was equal to 'old'.
803 enum srpt_command_state previous;
809 previous = ioctx->state;
810 if (previous == old)
813 return previous == old;