Home
last modified time | relevance | path

Searched refs:RpcServer (Results 1 – 9 of 9) sorted by relevance

/frameworks/native/libs/binder/
DRpcServer.cpp39 RpcServer::RpcServer() {} in RpcServer() function in android::RpcServer
40 RpcServer::~RpcServer() {} in ~RpcServer()
42 sp<RpcServer> RpcServer::make() { in make()
43 return sp<RpcServer>::make(); in make()
46 void RpcServer::iUnderstandThisCodeIsExperimentalAndIWillNotUseItInProduction() { in iUnderstandThisCodeIsExperimentalAndIWillNotUseItInProduction()
50 bool RpcServer::setupUnixDomainServer(const char* path) { in setupUnixDomainServer()
54 bool RpcServer::setupVsockServer(unsigned int port) { in setupVsockServer()
61 bool RpcServer::setupInetServer(unsigned int port, unsigned int* assignedPort) { in setupInetServer()
100 void RpcServer::setMaxThreads(size_t threads) { in setMaxThreads()
106 size_t RpcServer::getMaxThreads() { in getMaxThreads()
[all …]
DRpcSession.cpp180 sp<RpcServer> server = mForServer.promote(); in terminateLocked()
186 wp<RpcServer> RpcSession::server() { in server()
273 void RpcSession::setForServer(const wp<RpcServer>& server, int32_t sessionId) { in setForServer()
DAndroid.bp116 "RpcServer.cpp",
DRpcState.cpp592 sp<RpcServer> server = session->server().promote(); in processTransactInternal()
/frameworks/native/libs/binder/include/binder/
DRpcServer.h47 class RpcServer final : public virtual RefBase {
49 static sp<RpcServer> make();
138 ~RpcServer();
145 friend sp<RpcServer>;
146 RpcServer();
148 void establishConnection(sp<RpcServer>&& session, base::unique_fd clientFd);
DRpcSession.h36 class RpcServer; variable
92 wp<RpcServer> server();
112 friend RpcServer; variable
134 void setForServer(const wp<RpcServer>& server, int32_t sessionId);
180 wp<RpcServer> mForServer; // maybe null, for client sessions
/frameworks/native/libs/binder/tests/
DbinderRpcBenchmark.cpp33 using android::RpcServer;
122 sp<RpcServer> server = RpcServer::make(); in main()
DbinderRpcTest.cpp55 auto server = RpcServer::make(); in TEST()
91 wp<RpcServer> server;
102 sp<RpcServer> spServer = server.promote(); in countBinders()
326 const std::function<void(const sp<RpcServer>&)>& configure) { in createRpcTestSocketServerProcess()
338 sp<RpcServer> server = RpcServer::make(); in createRpcTestSocketServerProcess()
402 [&](const sp<RpcServer>& server) { in createRpcTestSocketServerProcess()
418 auto proc = createRpcTestSocketServerProcess(1, 1, [](const sp<RpcServer>& server) { in TEST_P()
948 using SetFn = std::function<void(RpcServer*, sp<IBinder>)>; in TEST_P()
950 return isStrong ? SetFn(&RpcServer::setRootObject) : SetFn(&RpcServer::setRootObjectWeak); in TEST_P()
953 auto server = RpcServer::make(); in TEST_P()
/frameworks/native/libs/binder/tests/rpc_fuzzer/
Dmain.cpp73 sp<RpcServer> server = RpcServer::make(); in LLVMFuzzerTestOneInput()