Lines Matching refs:reply
98 struct sof_ipc_reply reply; in sof_probes_init() local
110 ret = sof_client_ipc_tx_message(cdev, msg, &reply, sizeof(reply)); in sof_probes_init()
126 struct sof_ipc_reply reply; in sof_probes_deinit() local
131 return sof_client_ipc_tx_message(cdev, &msg, &reply, sizeof(reply)); in sof_probes_deinit()
139 struct sof_ipc_probe_info_params *reply; in sof_probes_info() local
146 reply = kzalloc(max_msg_size, GFP_KERNEL); in sof_probes_info()
147 if (!reply) in sof_probes_info()
152 ret = sof_client_ipc_tx_message(cdev, &msg, reply, max_msg_size); in sof_probes_info()
153 if (ret < 0 || reply->rhdr.error < 0) in sof_probes_info()
156 if (!reply->num_elems) in sof_probes_info()
160 bytes = sizeof(reply->dma[0]); in sof_probes_info()
162 bytes = sizeof(reply->desc[0]); in sof_probes_info()
163 bytes *= reply->num_elems; in sof_probes_info()
164 *params = kmemdup(&reply->dma[0], bytes, GFP_KERNEL); in sof_probes_info()
169 *num_params = reply->num_elems; in sof_probes_info()
172 kfree(reply); in sof_probes_info()
213 struct sof_ipc_reply reply; in sof_probes_points_add() local
224 ret = sof_client_ipc_tx_message(cdev, msg, &reply, sizeof(reply)); in sof_probes_points_add()
243 struct sof_ipc_reply reply; in sof_probes_points_remove() local
254 ret = sof_client_ipc_tx_message(cdev, msg, &reply, sizeof(reply)); in sof_probes_points_remove()