Home
last modified time | relevance | path

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

/external/crosvm/base/src/sys/windows/
Dstream_channel.rs70 pub struct StreamChannel { struct
84 // Held for the entire duration of a read. This enables the StreamChannel to be sync, argument
107 // For StreamChannels created via pair_with_buffer_size, allows the channel to accept messages argument
123 impl Serialize for StreamChannel { implementation
148 impl Drop for StreamChannel { implementation
158 impl StreamChannel { impl
317 ) -> Result<(StreamChannel, StreamChannel)> { in from_pipes() argument
355 ) -> Result<(StreamChannel, StreamChannel)> { in pair_with_buffer_size() argument
370 ) -> Result<(StreamChannel, StreamChannel)> { in pair() argument
388 impl io::Write for StreamChannel { implementation
[all …]
/external/crosvm/base/src/sys/unix/
Dstream_channel.rs34 impl io::Read for StreamChannel { implementation
40 impl io::Read for &StreamChannel { implementation
46 impl AsRawDescriptor for StreamChannel { implementation
62 pub struct StreamChannel { struct
66 impl StreamChannel { implementation
131 ) -> Result<(StreamChannel, StreamChannel)> { in pair() argument
150 pub fn from_unix_seqpacket(sock: UnixSeqpacket) -> StreamChannel { in from_unix_seqpacket()
192 impl io::Write for StreamChannel { implementation
207 impl io::Write for &StreamChannel { implementation
222 impl AsRawFd for StreamChannel { implementation
[all …]
Dsock_ctrl_msg.rs369 impl ScmSocket for StreamChannel { implementation
/external/crosvm/src/sys/
Dwindows.rs361 event_pipe: StreamChannel, in create_multi_touch_device()
380 fn create_mouse_device(cfg: &Config, event_pipe: StreamChannel, idx: u32) -> DeviceResult { in create_mouse_device()