diff options
Diffstat (limited to 'libs/binder/RpcState.h')
| -rw-r--r-- | libs/binder/RpcState.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libs/binder/RpcState.h b/libs/binder/RpcState.h index 13c31154eb..5bfef69c32 100644 --- a/libs/binder/RpcState.h +++ b/libs/binder/RpcState.h @@ -51,6 +51,9 @@ public: RpcState(); ~RpcState(); + status_t sendConnectionInit(const base::unique_fd& fd, const sp<RpcSession>& session); + status_t readConnectionInit(const base::unique_fd& fd, const sp<RpcSession>& session); + // TODO(b/182940634): combine some special transactions into one "getServerInfo" call? sp<IBinder> getRootObject(const base::unique_fd& fd, const sp<RpcSession>& session); status_t getMaxThreads(const base::unique_fd& fd, const sp<RpcSession>& session, @@ -144,8 +147,7 @@ private: const RpcWireHeader& command); [[nodiscard]] status_t processTransactInternal(const base::unique_fd& fd, const sp<RpcSession>& session, - CommandData transactionData, - sp<IBinder>&& targetRef); + CommandData transactionData); [[nodiscard]] status_t processDecStrong(const base::unique_fd& fd, const sp<RpcSession>& session, const RpcWireHeader& command); |