Lines Matching refs:reply
623 Parcel* reply, uint32_t flags) in transact() argument
640 if (reply) reply->setError(err); in transact()
662 if (reply) { in transact()
663 err = waitForResponse(reply); in transact()
679 if (reply) alog << indent << *reply << dedent << endl; in transact()
789 status_t IPCThreadState::sendReply(const Parcel& reply, uint32_t flags) in sendReply() argument
793 err = writeTransactionData(BC_REPLY_SG, flags, -1, 0, reply, &statusBuffer); in sendReply()
799 status_t IPCThreadState::waitForResponse(Parcel *reply, status_t *acquireResult) in waitForResponse() argument
819 if (!reply && !acquireResult) goto finish; in waitForResponse()
846 if (reply) { in waitForResponse()
848 reply->ipcSetDataReference( in waitForResponse()
883 if (reply) reply->setError(err); in waitForResponse()
1172 Parcel reply; in executeCommand() local
1207 &reply, tr.flags, reply_callback); in executeCommand()
1214 … error = the_context_object->transact(tr.code, buffer, &reply, tr.flags, reply_callback); in executeCommand()
1221 reply.setError(error); in executeCommand()
1222 sendReply(reply, 0); in executeCommand()
1246 << tr.target.ptr << ": " << indent << reply << dedent << endl; in executeCommand()