Lines Matching defs:retval
90 static inline bool is_ffa_error(struct ffa_value *retval)
92 return retval->func == FFA_ERROR;
95 static inline bool is_ffa_success(struct ffa_value *retval)
97 return (retval->func == FFA_SUCCESS_SMC32) ||
98 (retval->func == FFA_SUCCESS_SMC64);
101 static inline bool is_ffa_direct_msg_resp(struct ffa_value *retval)
103 return (retval->func == FFA_MSG_SEND_DIRECT_RESP_SMC32) ||
104 (retval->func == FFA_MSG_SEND_DIRECT_RESP_SMC64);
141 struct ffa_value *retval);
157 struct ffa_value *retval);