Lines Matching defs:reply

79     if (txn.reply.status() != MsgStatus::IPC_SUCCESS) {
81 module_id, instance_id, to_underlying(txn.reply.status()));
86 return dsp_to_zx_status(txn.reply.status());
108 module_id, instance_id, large_param_id, to_underlying(txn->reply.status()));
110 return dsp_to_zx_status(txn->reply.status());
129 if (txn.reply.status() != MsgStatus::IPC_SUCCESS) {
132 to_underlying(txn.reply.status()));
138 return dsp_to_zx_status(txn.reply.status());
155 if (txn.reply.status() != MsgStatus::IPC_SUCCESS) {
157 instance_id, to_underlying(txn.reply.status()));
162 return dsp_to_zx_status(txn.reply.status());
179 if (txn.reply.status() != MsgStatus::IPC_SUCCESS) {
181 ppl_id, to_underlying(txn.reply.status()));
186 return dsp_to_zx_status(txn.reply.status());
218 void IntelDspIpc::ProcessIpcReply(const IpcMessage& reply) {
221 LOG(INFO, "got spurious reply message\n");
226 // Check if the reply matches the pending request.
228 if ((req->msg_tgt() != reply.msg_tgt()) || (req->type() != reply.type())) {
229 LOG(INFO, "reply msg mismatch, got pri 0x%08x ext 0x%08x, expect pri 0x%08x ext 0x%08x\n",
230 reply.primary, reply.extension, req->primary, req->extension);
236 pending.reply = reply;
239 LOG(DEBUG1, "got reply (status %u) for pending msg, pri 0x%08x ext 0x%08x\n",
240 to_underlying(reply.status()), reply.primary, reply.extension);
242 if (reply.msg_tgt() == MsgTarget::MODULE_MSG) {
243 ModuleMsgType type = static_cast<ModuleMsgType>(reply.type());
262 ZX_DEBUG_ASSERT_MSG(txn->request.large_param_id() == txn->reply.large_param_id(),
264 txn->request.large_param_id(), txn->reply.large_param_id());
266 LOG(DEBUG1, "got LARGE_CONFIG_GET reply, id %u init_block %d final_block %d data_off_size %u\n",
267 txn->reply.large_param_id(), txn->reply.init_block(), txn->reply.final_block(),
268 txn->reply.data_off_size());
270 if (txn->reply.status() == MsgStatus::IPC_SUCCESS) {
272 uint32_t size = txn->reply.data_off_size();
273 ZX_DEBUG_ASSERT(txn->reply.init_block());
274 ZX_DEBUG_ASSERT(txn->reply.final_block());