Lines Matching defs:reply
146 struct avs_ipc_msg reply = {{0}};
152 ret = avs_dsp_send_msg(adev, &request, &reply);
158 *state = reply.rsp.ext.get_ppl_state.state;
380 struct avs_ipc_msg reply = {{0}};
384 reply.data = kzalloc(AVS_MAILBOX_SIZE, GFP_KERNEL);
385 if (!reply.data)
392 /* final_block is always 0 on request. Updated by fw on reply. */
399 reply.size = AVS_MAILBOX_SIZE;
401 ret = avs_dsp_send_msg(adev, &request, &reply);
404 kfree(reply.data);
408 buf = krealloc(reply.data, reply.size, GFP_KERNEL);
410 kfree(reply.data);
415 *reply_size = reply.size;