diff options
| author | 2023-01-18 20:43:43 +0000 | |
|---|---|---|
| committer | 2023-01-18 20:43:43 +0000 | |
| commit | 3bbd866bb2739d5d12e4e0c12f7de4710bbb751a (patch) | |
| tree | fd3200ea057c1b0064548152fdf72ea8732953dd /libs/binder/Binder.cpp | |
| parent | 637054bcee5ccebff35ccb0a429be3778bcbfc80 (diff) | |
| parent | c150630e839316f9bda6268c88102f7aa26165c1 (diff) | |
Merge "Add interfaceDescriptor to RecordedTransaction" am: c150630e83
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2389113
Change-Id: I62a1e02529bdb9e81c51a83ff76c47b1f6a701c3
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'libs/binder/Binder.cpp')
| -rw-r--r-- | libs/binder/Binder.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libs/binder/Binder.cpp b/libs/binder/Binder.cpp index da5affb274..5fa8bfa616 100644 --- a/libs/binder/Binder.cpp +++ b/libs/binder/Binder.cpp @@ -409,11 +409,9 @@ status_t BBinder::transact( Parcel emptyReply; timespec ts; timespec_get(&ts, TIME_UTC); - auto transaction = - android::binder::debug::RecordedTransaction::fromDetails(code, flags, ts, data, - reply ? *reply - : emptyReply, - err); + auto transaction = android::binder::debug::RecordedTransaction:: + fromDetails(getInterfaceDescriptor(), code, flags, ts, data, + reply ? *reply : emptyReply, err); if (transaction) { if (status_t err = transaction->dumpToFile(e->mRecordingFd); err != NO_ERROR) { LOG(INFO) << "Failed to dump RecordedTransaction to file with error " << err; |