Home | History | Annotate | Download | only in binder

Lines Matching refs:reply

166         out << "Unknown reply: " << code << endl;
510 Parcel* reply, uint32_t flags)
525 (flags & TF_ONE_WAY) == 0 ? "READ REPLY" : "ONE WAY");
530 if (reply) reply->setError(err);
542 if (reply) {
543 err = waitForResponse(reply);
560 if (reply) alog << indent << *reply << dedent << endl;
656 status_t IPCThreadState::sendReply(const Parcel& reply, uint32_t flags)
660 err = writeTransactionData(BC_REPLY, flags, -1, 0, reply, &statusBuffer);
666 status_t IPCThreadState::waitForResponse(Parcel *reply, status_t *acquireResult)
686 if (!reply && !acquireResult) goto finish;
713 if (reply) {
715 reply->ipcSetDataReference(
750 if (reply) reply->setError(err);
1022 Parcel reply;
1036 const status_t error = b->transact(tr.code, buffer, &reply, tr.flags);
1037 if (error < NO_ERROR) reply.setError(error);
1040 const status_t error = the_context_object->transact(tr.code, buffer, &reply, tr.flags);
1041 if (error < NO_ERROR) reply.setError(error);
1048 LOG_ONEWAY("Sending reply to %d!", mCallingPid);
1049 sendReply(reply, 0);
1051 LOG_ONEWAY("NOT sending reply to %d!", mCallingPid);
1060 << tr.target.ptr << ": " << indent << reply << dedent << endl;