diff options
author | 2021-09-14 16:49:00 +0000 | |
---|---|---|
committer | 2021-09-14 16:49:00 +0000 | |
commit | d612489ad404f5f193b35a649790d7734f4a7314 (patch) | |
tree | b7465001d1d749d137d21d328721f50069657019 /libs/binder/Parcel.cpp | |
parent | 17852592f0a8e408775de0fe87c0aa67d5d206cd (diff) | |
parent | a54c8618434a6ca4cf81c11054b507bf4d073680 (diff) |
Merge changes I89e4de2e,I673d7a4c,Icfb454c2,I5924a82c am: a54c861843
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1825953
Change-Id: Ibf6c5ced4bc9d9822308c4ab4e370e7290753c39
Diffstat (limited to 'libs/binder/Parcel.cpp')
-rw-r--r-- | libs/binder/Parcel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/binder/Parcel.cpp b/libs/binder/Parcel.cpp index dce6f3bf70..75752525c6 100644 --- a/libs/binder/Parcel.cpp +++ b/libs/binder/Parcel.cpp @@ -237,7 +237,7 @@ status_t Parcel::flattenBinder(const sp<IBinder>& binder) { return INVALID_OPERATION; } } - const int32_t handle = proxy ? proxy->getPrivateAccessorForId().binderHandle() : 0; + const int32_t handle = proxy ? proxy->getPrivateAccessor().binderHandle() : 0; obj.hdr.type = BINDER_TYPE_HANDLE; obj.binder = 0; /* Don't pass uninitialized stack data to a remote process */ obj.handle = handle; @@ -572,7 +572,7 @@ void Parcel::markForBinder(const sp<IBinder>& binder) { LOG_ALWAYS_FATAL_IF(mData != nullptr, "format must be set before data is written"); if (binder && binder->remoteBinder() && binder->remoteBinder()->isRpcBinder()) { - markForRpc(binder->remoteBinder()->getPrivateAccessorForId().rpcSession()); + markForRpc(binder->remoteBinder()->getPrivateAccessor().rpcSession()); } } |