Searched refs:bootstrapFd (Results 1 – 4 of 4) sorted by relevance
/frameworks/native/libs/binder/ |
D | libbinder_rpc_unstable.cpp | 130 ARpcServer* ARpcServer_newUnixDomainBootstrap(AIBinder* service, int bootstrapFd) { in ARpcServer_newUnixDomainBootstrap() argument 132 auto fd = unique_fd(bootstrapFd); in ARpcServer_newUnixDomainBootstrap() 134 ALOGE("Invalid bootstrap fd %d", bootstrapFd); in ARpcServer_newUnixDomainBootstrap() 139 ALOGE("Failed to set up Unix Domain RPC server with bootstrap fd %d error: %s", bootstrapFd, in ARpcServer_newUnixDomainBootstrap() 225 AIBinder* ARpcSession_setupUnixDomainBootstrapClient(ARpcSession* handle, int bootstrapFd) { in ARpcSession_setupUnixDomainBootstrapClient() argument 227 auto fd = unique_fd(dup(bootstrapFd)); in ARpcSession_setupUnixDomainBootstrapClient() 229 ALOGE("Invalid bootstrap fd %d", bootstrapFd); in ARpcSession_setupUnixDomainBootstrapClient() 235 bootstrapFd, statusToString(status).c_str()); in ARpcSession_setupUnixDomainBootstrapClient()
|
D | RpcServer.cpp | 66 status_t RpcServer::setupUnixDomainSocketBootstrapServer(unique_fd bootstrapFd) { in setupUnixDomainSocketBootstrapServer() argument 67 return setupExternalServer(std::move(bootstrapFd), &RpcServer::recvmsgSocketConnection); in setupUnixDomainSocketBootstrapServer()
|
D | RpcSession.cpp | 147 status_t RpcSession::setupUnixDomainSocketBootstrapClient(unique_fd bootstrapFd) { in setupUnixDomainSocketBootstrapClient() argument 149 mCtx->newTransport(RpcTransportFd(std::move(bootstrapFd)), mShutdownTrigger.get()); in setupUnixDomainSocketBootstrapClient()
|
/frameworks/native/libs/binder/include_rpc_unstable/ |
D | binder_rpc_unstable.hpp | 59 [[nodiscard]] ARpcServer* ARpcServer_newUnixDomainBootstrap(AIBinder* service, int bootstrapFd); 120 int bootstrapFd);
|