Home
last modified time | relevance | path

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

/frameworks/native/libs/binder/rust/rpcbinder/src/server/
Dandroid.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()
65 ) -> Result<RpcServer, Error> { in new_bound_socket()
86 ) -> Result<RpcServer, Error> { in new_unix_domain_bootstrap()
102 pub fn new_inet(mut service: SpIBinder, address: &str, port: u32) -> Result<RpcServer, Error> { in new_inet()
123 unsafe fn checked_from_ptr(ptr: *mut ARpcServer) -> Result<RpcServer, Error> { in checked_from_ptr()
Dtrusty.rs26 pub struct RpcServer { struct
27 inner: *mut binder_rpc_server_bindgen::ARpcServerTrusty, argument
32 unsafe impl Send for RpcServer {} implementation
34 unsafe impl Sync for RpcServer {} implementation
36 impl Drop for RpcServer { implementation
46 impl RpcServer { impl
48 pub fn new(service: SpIBinder) -> RpcServer { in new()
57 pub fn new_per_session<F: PerSessionCallback>(f: F) -> RpcServer { in new_per_session()
118 impl UnbufferedService for RpcServer { implementation
/frameworks/native/libs/binder/include/binder/
DRpcSession.h33 class RpcServer; variable
225 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
648 unique_fd serverFd, std::function<status_t(const RpcServer&, RpcTransportFd*)>&& acceptFn) { in setupExternalServer()