Searched refs:ARpcServer (Results 1 – 3 of 3) sorted by relevance
/frameworks/native/libs/binder/include_rpc_unstable/ |
D | binder_rpc_unstable.hpp | 25 struct ARpcServer; 40 [[nodiscard]] ARpcServer* ARpcServer_newVsock(AIBinder* service, unsigned int cid, 49 [[nodiscard]] ARpcServer* ARpcServer_newBoundSocket(AIBinder* service, int socketFd); 59 [[nodiscard]] ARpcServer* ARpcServer_newUnixDomainBootstrap(AIBinder* service, int bootstrapFd); 67 [[nodiscard]] ARpcServer* ARpcServer_newInet(AIBinder* service, const char* address, 72 ARpcServer* handle, 85 void ARpcServer_setMaxThreads(ARpcServer* server, size_t threads); 88 void ARpcServer_start(ARpcServer* server); 94 void ARpcServer_join(ARpcServer* server); 97 [[nodiscard]] bool ARpcServer_shutdown(ARpcServer* server); [all …]
|
/frameworks/native/libs/binder/ |
D | libbinder_rpc_unstable.cpp | 41 struct ARpcServer {}; struct 84 ARpcServer* ARpcServer_newVsock(AIBinder* service, unsigned int cid, unsigned int port) { in ARpcServer_newVsock() 111 return createObjectHandle<ARpcServer>(server); in ARpcServer_newVsock() 114 ARpcServer* ARpcServer_newBoundSocket(AIBinder* service, int socketFd) { in ARpcServer_newBoundSocket() 127 return createObjectHandle<ARpcServer>(server); in ARpcServer_newBoundSocket() 130 ARpcServer* ARpcServer_newUnixDomainBootstrap(AIBinder* service, int bootstrapFd) { in ARpcServer_newUnixDomainBootstrap() 144 return createObjectHandle<ARpcServer>(server); in ARpcServer_newUnixDomainBootstrap() 147 ARpcServer* ARpcServer_newInet(AIBinder* service, const char* address, unsigned int port) { in ARpcServer_newInet() 155 return createObjectHandle<ARpcServer>(server); in ARpcServer_newInet() 160 ARpcServer* handle, const ARpcSession_FileDescriptorTransportMode modes[], in ARpcServer_setSupportedFileDescriptorTransportModes() [all …]
|
/frameworks/native/libs/binder/rust/rpcbinder/src/server/ |
D | android.rs | 19 use binder_rpc_unstable_bindgen::ARpcServer; 26 type CType = binder_rpc_unstable_bindgen::ARpcServer; 123 unsafe fn checked_from_ptr(ptr: *mut ARpcServer) -> Result<RpcServer, Error> { in checked_from_ptr()
|