Home
last modified time | relevance | path

Searched refs:as_raw_socket (Results 1 – 10 of 10) sorted by relevance

/external/rust/crates/mio/src/net/tcp/
Dlistener.rs193 fn as_raw_socket(&self) -> RawSocket { in as_raw_socket() method
194 self.inner.as_raw_socket() in as_raw_socket()
Dstream.rs289 fn as_raw_socket(&self) -> RawSocket { in as_raw_socket() method
290 self.inner.as_raw_socket() in as_raw_socket()
Dsocket.rs386 fn as_raw_socket(&self) -> RawSocket { in as_raw_socket() method
/external/rust/crates/tokio/src/net/tcp/
Dsocket.rs530 fn as_raw_socket(&self) -> RawSocket { in as_raw_socket() method
531 self.inner.as_raw_socket() in as_raw_socket()
Dlistener.rs386 fn as_raw_socket(&self) -> RawSocket { in as_raw_socket() method
387 self.io.as_raw_socket() in as_raw_socket()
Dstream.rs933 unsafe { mio::net::TcpSocket::from_raw_socket(self.as_raw_socket()) } in to_mio()
1122 fn as_raw_socket(&self) -> RawSocket { in as_raw_socket() method
1123 self.io.as_raw_socket() in as_raw_socket()
/external/rust/crates/mio/src/net/
Dudp.rs596 fn as_raw_socket(&self) -> RawSocket { in as_raw_socket() method
597 self.inner.as_raw_socket() in as_raw_socket()
/external/rust/crates/mio/src/sys/windows/
Dudp.rs39 socket.as_raw_socket() as usize, in only_v6()
/external/rust/crates/tokio/src/net/
Dudp.rs1433 fn as_raw_socket(&self) -> RawSocket { in as_raw_socket() method
1434 self.io.as_raw_socket() in as_raw_socket()
/external/rust/crates/mio/src/
Dio_source.rs180 .register(registry, token, interests, self.inner.as_raw_socket()) in register()