Home
last modified time | relevance | path

Searched defs:RpcServer (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/libs/binder/rust/rpcbinder/src/
Dserver.rs37 unsafe impl Send for RpcServer {} implementation
39 unsafe impl Sync for RpcServer {} implementation
41 impl RpcServer { implementation
47 pub fn new_vsock(mut service: SpIBinder, cid: u32, port: u32) -> Result<RpcServer, Error> { in new_vsock()
64 ) -> Result<RpcServer, Error> { in new_init_unix_domain()
91 ) -> Result<RpcServer, Error> { in new_unix_domain_bootstrap()
107 pub fn new_inet(mut service: SpIBinder, address: &str, port: u32) -> Result<RpcServer, Error> { in new_inet()
128 unsafe fn checked_from_ptr(ptr: *mut ARpcServer) -> Result<RpcServer, Error> { in checked_from_ptr()
/frameworks/native/libs/binder/include/binder/
DRpcSession.h33 class RpcServer; variable
222 friend RpcServer; variable
/frameworks/native/libs/binder/
DRpcServer.cpp51 RpcServer::RpcServer(std::unique_ptr<RpcTransportCtx> ctx) : mCtx(std::move(ctx)) {} in RpcServer() function in android::RpcServer
618 std::function<status_t(const RpcServer&, RpcTransportFd*)>&& acceptFn) { in setupExternalServer()