From c8c256b623789fdb6eadb4a6821f09dd4bb9c60b Mon Sep 17 00:00:00 2001 From: Steven Moreland Date: Tue, 11 May 2021 22:59:09 +0000 Subject: libbinder: addClient->addClientConnection To match previous s/mServers|mClients/\0Connections/g change. Bug: N/A Test: N/A Change-Id: Id47410ad27ba78e57b5677dbeaa0435e25343b8b --- libs/binder/RpcSession.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libs/binder/RpcSession.cpp') diff --git a/libs/binder/RpcSession.cpp b/libs/binder/RpcSession.cpp index 3e83c99a29..f38135b2dc 100644 --- a/libs/binder/RpcSession.cpp +++ b/libs/binder/RpcSession.cpp @@ -84,7 +84,7 @@ bool RpcSession::addNullDebuggingClient() { return false; } - addClient(std::move(serverFd)); + addClientConnection(std::move(serverFd)); return true; } @@ -255,7 +255,7 @@ bool RpcSession::setupOneSocketClient(const RpcSocketAddress& addr, int32_t id) LOG_RPC_DETAIL("Socket at %s client with fd %d", addr.toString().c_str(), serverFd.get()); - addClient(std::move(serverFd)); + addClientConnection(std::move(serverFd)); return true; } @@ -263,7 +263,7 @@ bool RpcSession::setupOneSocketClient(const RpcSocketAddress& addr, int32_t id) return false; } -void RpcSession::addClient(unique_fd fd) { +void RpcSession::addClientConnection(unique_fd fd) { std::lock_guard _l(mMutex); sp session = sp::make(); session->fd = std::move(fd); -- cgit v1.2.3-59-g8ed1b