Lines Matching full:response
60 uint8_t response[5]; member
113 * to avoid conflict between CMD12 response and next data block, in OBJECT_DECLARE_SIMPLE_TYPE()
153 s->response[0] = 0; in OBJECT_DECLARE_SIMPLE_TYPE()
158 s->response[0] = SSI_DUMMY; in OBJECT_DECLARE_SIMPLE_TYPE()
177 s->response[0] = 4; in OBJECT_DECLARE_SIMPLE_TYPE()
180 /* CMD8/CMD58 returns R3/R7 response */ in OBJECT_DECLARE_SIMPLE_TYPE()
183 s->response[0] = 1; in OBJECT_DECLARE_SIMPLE_TYPE()
184 memcpy(&s->response[1], longresp, 4); in OBJECT_DECLARE_SIMPLE_TYPE()
186 BADF("Unexpected response to cmd %d\n", s->cmd); in OBJECT_DECLARE_SIMPLE_TYPE()
189 s->response[0] = 4; in OBJECT_DECLARE_SIMPLE_TYPE()
237 s->response[0] = status >> 8; in OBJECT_DECLARE_SIMPLE_TYPE()
238 s->response[1] = status; in OBJECT_DECLARE_SIMPLE_TYPE()
248 DPRINTF("Prepare card response (Ncr)\n"); in OBJECT_DECLARE_SIMPLE_TYPE()
253 DPRINTF("Response 0x%02x\n", s->response[s->response_pos]); in OBJECT_DECLARE_SIMPLE_TYPE()
254 return s->response[s->response_pos++]; in OBJECT_DECLARE_SIMPLE_TYPE()
319 s->response[0] = DATA_RESPONSE_ACCEPTED; in OBJECT_DECLARE_SIMPLE_TYPE()
340 (s->response_pos < 0 || s->response_pos >= ARRAY_SIZE(s->response) || in ssi_sd_post_load()
341 (!s->stopping && s->arglen > ARRAY_SIZE(s->response)))) { in ssi_sd_post_load()
357 VMSTATE_UINT8_ARRAY(response, ssi_sd_state, 5),
383 memset(s->response, 0, sizeof(s->response)); in ssi_sd_reset()