Searched refs:ChannelTy (Results 1 – 1 of 1) sorted by relevance
/trusty/user/base/lib/tipc/rust/src/ |
D | service.rs | 133 ty: ChannelTy<D>, 153 enum ChannelTy<D: Dispatcher> { enum 161 impl<D: Dispatcher> fmt::Debug for ChannelTy<D> { implementation 164 ChannelTy::Port(cfg) => write!(f, "ChannelTy::Port({:?})", cfg), in fmt() 165 ChannelTy::Connection(_) => write!(f, "ChannelTy::Connection"), in fmt() 177 ChannelTy::Port(..) => true, in is_port() 184 ChannelTy::Connection(..) => true, in is_connection() 221 ty: ChannelTy::Port(cfg.try_clone()?), in try_new_port() 227 Ok(Rc::try_new(Self { handle, ty: ChannelTy::Connection(data) })?) in try_new_connection() 1113 ChannelTy::Port(cfg) if event.event & (sys::IPC_HANDLE_POLL_READY as u32) != 0 => { in handler() [all …]
|