Home
last modified time | relevance | path

Searched refs:on_disconnect (Results 1 – 12 of 12) sorted by relevance

/trusty/user/base/lib/tipc/include/lib/tipc/
Dtipc_srv.h152 void (*on_disconnect)(const struct tipc_port* port, member
/trusty/user/app/storage/
Dipc.h80 ipc_disconnect_handler_t on_disconnect; member
Dipc.c83 return (ops->on_disconnect != NULL); in is_valid_chan_ops()
130 chan_ctx->ops.on_disconnect(chan_ctx); in do_connect()
190 context->ops.on_disconnect(context); in do_disconnect()
431 chan_ctx->ops.on_disconnect(chan_ctx); in ipc_port_destroy()
Dproxy.c142 session->proxy_ctx.ops.on_disconnect = proxy_disconnect; in proxy_connect()
Dclient_tipc.c335 ops->on_disconnect = client_disconnect; in client_channel_ops_init()
/trusty/user/base/lib/tipc/rust/src/
Dservice.rs405 fn on_disconnect(&self, _connection: &Self::Connection) {} in on_disconnect() method
442 fn on_disconnect(&self, _connection: &Self::Connection) {} in on_disconnect() method
481 fn on_disconnect(&self, connection: &<Self as UnbufferedService>::Connection) { in on_disconnect() method
482 <Self as Service>::on_disconnect(self, connection) in on_disconnect()
561 fn on_disconnect(&self, connection: &Self::Connection) {
562 <$inner as $crate::Service>::on_disconnect(&self.0, connection)
589 fn on_disconnect(&self, connection: &Self::Connection) {
590 <$inner as $crate::UnbufferedService>::on_disconnect(&self.0, connection)
631 fn on_disconnect(&self, _connection: &Self::Connection) {} in on_disconnect() method
682 fn on_disconnect(&self, connection: &Self::Connection) { in on_disconnect() method
[all …]
/trusty/user/base/lib/spi/srv/tipc/
Dtipc.c250 static void on_disconnect(const struct tipc_port* port, in on_disconnect() function
296 .on_disconnect = on_disconnect,
/trusty/user/base/lib/tipc/
Dtipc_srv.c159 if (srv->ops->on_disconnect) { in chan_event_handler_proc()
160 srv->ops->on_disconnect(chan->port->cfg, chan->handle, in chan_event_handler_proc()
/trusty/kernel/lib/ktipc/
Dktipc.c114 if (kchan->ops->on_disconnect) { in chan_event_handler()
115 kchan->ops->on_disconnect(kchan->port, kchan->href.handle, in chan_event_handler()
/trusty/kernel/lib/ktipc/include/lib/ktipc/
Dktipc.h181 void (*on_disconnect)(const struct ktipc_port* port, member
/trusty/user/base/lib/unittest-rust/src/
Dlib.rs253 fn on_disconnect(&self, _connection: &Self::Connection) { in on_disconnect() method
/trusty/user/base/lib/secure_dpu/
Dsecure_dpu.c325 .on_disconnect = secure_dpu_on_disconnect, in add_secure_dpu_service()