Lines Matching defs:response
46 uint32_t response = aml_mhu_secure_message_wait();
48 size_t size = (response >> SIZE_SHIFT) & SIZE_MASK;
50 response &= ~(SIZE_MASK << SIZE_SHIFT);
58 return response;
79 uint32_t *response;
85 aml_scpi_secure_message_receive((void *)&response, &size);
88 return *response;
110 uint32_t *response;
120 aml_scpi_secure_message_receive((void *)&response, &resp_size);
124 * response[0] is the size of the response message.
125 * response[1 ... N] are the contents.
127 if (*response != 0)
128 memcpy(dst, response + 1, *response);
130 return *response;
148 uint32_t *response;
156 aml_scpi_secure_message_receive((void *)&response, &resp_size);
163 memcpy((void *)obuff, (const void *)response, osize);