Lines Matching refs:reply
71 struct sof_ipc_reply reply; in hda_dsp_ipc_get_reply() local
91 reply.error = 0; in hda_dsp_ipc_get_reply()
92 reply.hdr.cmd = SOF_IPC_GLB_REPLY; in hda_dsp_ipc_get_reply()
93 reply.hdr.size = sizeof(reply); in hda_dsp_ipc_get_reply()
94 memcpy(msg->reply_data, &reply, sizeof(reply)); in hda_dsp_ipc_get_reply()
99 sof_mailbox_read(sdev, sdev->host_box.offset, &reply, in hda_dsp_ipc_get_reply()
100 sizeof(reply)); in hda_dsp_ipc_get_reply()
102 if (reply.error < 0) { in hda_dsp_ipc_get_reply()
103 memcpy(msg->reply_data, &reply, sizeof(reply)); in hda_dsp_ipc_get_reply()
104 ret = reply.error; in hda_dsp_ipc_get_reply()
107 if (reply.hdr.size != msg->reply_size) { in hda_dsp_ipc_get_reply()
109 msg->reply_size, reply.hdr.size); in hda_dsp_ipc_get_reply()
302 const struct sof_ipc_pcm_params_reply *reply) in hda_ipc_pcm_params() argument
307 size_t posn_offset = reply->posn_offset; in hda_ipc_pcm_params()