Loading libs/binder/Binder.cpp +3 −2 Original line number Diff line number Diff line Loading @@ -411,8 +411,9 @@ status_t BBinder::transact( if (reply != nullptr) { reply->setDataPosition(0); if (reply->dataSize() > binder::kLogTransactionsOverBytes) { ALOGW("Large reply transaction of %zu bytes, interface descriptor %s, code %d", reply->dataSize(), String8(getInterfaceDescriptor()).c_str(), code); ALOGW("Large reply transaction of %zu bytes, interface descriptor %s, code %d, flags " "%d", reply->dataSize(), String8(getInterfaceDescriptor()).c_str(), code, flags); } } Loading libs/binder/BpBinder.cpp +3 −3 Original line number Diff line number Diff line Loading @@ -404,9 +404,9 @@ status_t BpBinder::transact( if (data.dataSize() > binder::kLogTransactionsOverBytes) { RpcMutexUniqueLock _l(mLock); ALOGW("Large outgoing transaction of %zu bytes, interface descriptor %s, code %d was " "sent", data.dataSize(), String8(mDescriptorCache).c_str(), code); ALOGW("Large outgoing transaction of %zu bytes, interface descriptor %s, code %d, " "flags %d was sent", data.dataSize(), String8(mDescriptorCache).c_str(), code, flags); } if (status == DEAD_OBJECT) mAlive = 0; Loading Loading
libs/binder/Binder.cpp +3 −2 Original line number Diff line number Diff line Loading @@ -411,8 +411,9 @@ status_t BBinder::transact( if (reply != nullptr) { reply->setDataPosition(0); if (reply->dataSize() > binder::kLogTransactionsOverBytes) { ALOGW("Large reply transaction of %zu bytes, interface descriptor %s, code %d", reply->dataSize(), String8(getInterfaceDescriptor()).c_str(), code); ALOGW("Large reply transaction of %zu bytes, interface descriptor %s, code %d, flags " "%d", reply->dataSize(), String8(getInterfaceDescriptor()).c_str(), code, flags); } } Loading
libs/binder/BpBinder.cpp +3 −3 Original line number Diff line number Diff line Loading @@ -404,9 +404,9 @@ status_t BpBinder::transact( if (data.dataSize() > binder::kLogTransactionsOverBytes) { RpcMutexUniqueLock _l(mLock); ALOGW("Large outgoing transaction of %zu bytes, interface descriptor %s, code %d was " "sent", data.dataSize(), String8(mDescriptorCache).c_str(), code); ALOGW("Large outgoing transaction of %zu bytes, interface descriptor %s, code %d, " "flags %d was sent", data.dataSize(), String8(mDescriptorCache).c_str(), code, flags); } if (status == DEAD_OBJECT) mAlive = 0; Loading