Lines Matching refs:code
131 << "code=" << TypeCode(btd->code) << ", flags=" << (void*)(long)btd->flags << endl in printBinderTransactionData()
143 uint32_t code = (uint32_t)*cmd++; in printReturnCommand() local
144 size_t cmdIndex = code & 0xff; in printReturnCommand()
145 if (code == BR_ERROR) { in printReturnCommand()
149 out << "Unknown reply: " << code << endl; in printReturnCommand()
154 switch (code) { in printReturnCommand()
204 uint32_t code = (uint32_t)*cmd++; in printCommand() local
205 size_t cmdIndex = code & 0xff; in printCommand()
208 out << "Unknown command: " << code << endl; in printCommand()
213 switch (code) { in printCommand()
563 uint32_t code, const Parcel& data, in transact() argument
572 << handle << " / code " << TypeCode(code) << ": " in transact()
579 err = writeTransactionData(BC_TRANSACTION_SG, flags, handle, code, data, NULL); in transact()
589 if (code == 4) { // relayout in transact()
592 ALOGI(">>>>>> CALLING transaction %d", code); in transact()
602 if (code == 4) { // relayout in transact()
605 ALOGI("<<<<<< RETURNING transaction %d", code); in transact()
915 int32_t handle, uint32_t code, const Parcel& data, status_t* statusBuffer) in writeTransactionData() argument
920 tr_sg.tr.code = code; in writeTransactionData()
1078 << TypeCode(tr.code) << ": " << indent << buffer in executeCommand()
1106 error = reinterpret_cast<BHwBinder*>(tr.cookie)->transact(tr.code, buffer, in executeCommand()
1114 error = mContextObject->transact(tr.code, buffer, &reply, tr.flags, reply_callback); in executeCommand()