Home | History | Annotate | Download | only in binder

Lines Matching refs:flags

158         << "code=" << TypeCode(btd->code) << ", flags=" << (void*)btd->flags << endl
380 void IPCThreadState::setLastTransactionBinderFlags(int32_t flags)
382 mLastTransactionBinderFlags = flags;
495 Parcel* reply, uint32_t flags)
499 flags |= TF_ACCEPT_FDS;
510 (flags & TF_ONE_WAY) == 0 ? "READ REPLY" : "ONE WAY");
511 err = writeTransactionData(BC_TRANSACTION, flags, handle, code, data, NULL);
519 if ((flags & TF_ONE_WAY) == 0) {
640 status_t IPCThreadState::sendReply(const Parcel& reply, uint32_t flags)
644 err = writeTransactionData(BC_REPLY, flags, -1, 0, reply, &statusBuffer);
698 if ((tr.flags & TF_STATUS_CODE) == 0) {
843 tr.flags = binderFlags;
852 tr.flags |= TF_STATUS_CODE;
1012 const status_t error = b->transact(tr.code, buffer, &reply, tr.flags);
1016 const status_t error = the_context_object->transact(tr.code, buffer, &reply, tr.flags);
1023 if ((tr.flags & TF_ONE_WAY) == 0) {