Lines Matching refs:rsp
212 struct ssam_response *rsp);
216 struct ssam_response *rsp,
238 #define ssam_request_sync_onstack(ctrl, rqst, rsp, payload_len) \ argument
243 ssam_request_sync_with_buffer(ctrl, rqst, rsp, &__buf); \
441 struct ssam_response rsp; \
452 rsp.capacity = sizeof(rtype); \
453 rsp.length = 0; \
454 rsp.pointer = (u8 *)ret; \
456 status = ssam_request_sync_onstack(ctrl, &rqst, &rsp, 0); \
460 if (rsp.length != sizeof(rtype)) { \
464 sizeof(rtype), rsp.length, rqst.target_category,\
502 struct ssam_response rsp; \
513 rsp.capacity = sizeof(rtype); \
514 rsp.length = 0; \
515 rsp.pointer = (u8 *)ret; \
517 status = ssam_request_sync_onstack(ctrl, &rqst, &rsp, sizeof(atype)); \
521 if (rsp.length != sizeof(rtype)) { \
525 sizeof(rtype), rsp.length, rqst.target_category,\
646 struct ssam_response rsp; \
657 rsp.capacity = sizeof(rtype); \
658 rsp.length = 0; \
659 rsp.pointer = (u8 *)ret; \
661 status = ssam_request_sync_onstack(ctrl, &rqst, &rsp, 0); \
665 if (rsp.length != sizeof(rtype)) { \
669 sizeof(rtype), rsp.length, rqst.target_category,\
710 struct ssam_response rsp; \
721 rsp.capacity = sizeof(rtype); \
722 rsp.length = 0; \
723 rsp.pointer = (u8 *)ret; \
725 status = ssam_request_sync_onstack(ctrl, &rqst, &rsp, sizeof(atype)); \
729 if (rsp.length != sizeof(rtype)) { \
733 sizeof(rtype), rsp.length, rqst.target_category,\