Searched defs:TcpListener (Results  1 – 12 of 12) sorted by relevance
| /external/rust/crates/mio/src/net/tcp/ | 
| D | listener.rs | 44 pub struct TcpListener {  struct45     inner: IoSource<net::TcpListener>,  argument
 48 impl TcpListener {  implementation
 59     pub fn bind(addr: SocketAddr) -> io::Result<TcpListener> {  in bind()
 87     pub fn from_std(listener: net::TcpListener) -> TcpListener {  in from_std()
 139 impl event::Source for TcpListener {  implementation
 163 impl fmt::Debug for TcpListener {  implementation
 170 impl IntoRawFd for TcpListener {  implementation
 177 impl AsRawFd for TcpListener {  implementation
 184 impl FromRawFd for TcpListener {  implementation
 [all …]
 
 | 
| /external/rust/crates/tokio/src/net/tcp/ | 
| D | listener.rs | 60 impl TcpListener {  impl238     pub fn from_std(listener: net::TcpListener) -> io::Result<TcpListener> {  in from_std()
 266     pub fn into_std(self) -> io::Result<std::net::TcpListener> {  in into_std()
 382 impl TryFrom<net::TcpListener> for TcpListener {  implementation
 394 impl fmt::Debug for TcpListener {  implementation
 405     impl AsRawFd for TcpListener {  implementation
 431     impl AsRawSocket for TcpListener {  implementation
 
 | 
| D | socket.rs | 644     pub fn listen(self, backlog: u32) -> io::Result<TcpListener> {  in listen()
 | 
| /external/rust/crates/mio/src/sys/shell/ | 
| D | tcp.rs | 10 pub(crate) fn bind(_: &net::TcpListener, _: SocketAddr) -> io::Result<()> {  in bind()20 pub(crate) fn listen(_: &net::TcpListener, _: u32) -> io::Result<()> {  in listen()
 25 pub(crate) fn set_reuseaddr(_: &net::TcpListener, _: bool) -> io::Result<()> {  in set_reuseaddr()
 
 | 
| /external/rust/crates/mio/src/sys/unix/ | 
| D | tcp.rs | 17 pub(crate) fn bind(socket: &net::TcpListener, addr: SocketAddr) -> io::Result<()> {  in bind()36 pub(crate) fn listen(socket: &net::TcpListener, backlog: u32) -> io::Result<()> {  in listen()
 42 pub(crate) fn set_reuseaddr(socket: &net::TcpListener, reuseaddr: bool) -> io::Result<()> {  in set_reuseaddr()
 
 | 
| /external/rust/crates/tokio-stream/src/wrappers/ | 
| D | tcp_listener.rs | 24     pub fn into_inner(self) -> TcpListener {  in into_inner()45     fn as_ref(&self) -> &TcpListener {  in as_ref()
 51     fn as_mut(&mut self) -> &mut TcpListener {  in as_mut()
 
 | 
| /external/rust/crates/mio/src/sys/windows/ | 
| D | tcp.rs | 13 pub(crate) fn bind(socket: &net::TcpListener, addr: SocketAddr) -> io::Result<()> {  in bind()49 pub(crate) fn listen(socket: &net::TcpListener, backlog: u32) -> io::Result<()> {  in listen()
 
 | 
| /external/rust/crates/tokio-util/src/net/ | 
| D | mod.rs | 34 impl Listener for tokio::net::TcpListener {  implementation
 | 
| /external/crosvm/base/src/sys/unix/ | 
| D | descriptor.rs | 147 impl From<SafeDescriptor> for TcpListener {  implementation
 | 
| D | net.rs | 233     pub fn listen(self) -> io::Result<TcpListener> {  in listen()
 | 
| /external/libchromeos-rs/src/ | 
| D | net.rs | 172     pub fn listen(self) -> io::Result<TcpListener> {  in listen()
 | 
| /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ | 
| D | DebugEventSocketProxy.cs | 43     using TcpListener = System.Net.Sockets.TcpListener;  typedef
 |