Lines Matching defs:response
98 /* If no message was received, don't send a response */
114 VERBOSE("Sending response for SCP_READY command\n");
117 * Send our response back to SCP.
176 * In response to the query, SCP returns power states of all CPUs in all
177 * clusters of the system. The returned response is then filtered based on the
187 scpi_cmd_t response;
216 * Send message and wait for SCP's response
219 if (scpi_secure_message_receive(&response) != 0)
222 if (response.status != SCP_OK)
225 /* Validate SCP response */
226 if (!CHECK_RESPONSE(response, cluster))
250 scpi_cmd_t response;
265 /* If no response is received, fill in an error status */
266 if (scpi_secure_message_receive(&response) != 0)
267 response.status = SCP_E_TIMEOUT;
271 return response.status;