/external/rust/android-crates-io/crates/mio/src/net/tcp/ |
D | listener.rs | 48 pub struct TcpListener { struct 49 inner: IoSource<net::TcpListener>, argument 52 impl TcpListener { implementation 63 pub fn bind(addr: SocketAddr) -> io::Result<TcpListener> { in bind() 91 pub fn from_std(listener: net::TcpListener) -> TcpListener { in from_std() 143 impl event::Source for TcpListener { implementation 167 impl fmt::Debug for TcpListener { implementation 174 impl IntoRawFd for TcpListener { implementation 181 impl AsRawFd for TcpListener { implementation 188 impl FromRawFd for TcpListener { implementation [all …]
|
/external/rust/android-crates-io/crates/tokio/src/net/tcp/ |
D | listener.rs | 59 impl TcpListener { impl 237 pub fn from_std(listener: net::TcpListener) -> io::Result<TcpListener> { in from_std() 265 pub fn into_std(self) -> io::Result<std::net::TcpListener> { in into_std() 381 impl TryFrom<net::TcpListener> for TcpListener { implementation 393 impl fmt::Debug for TcpListener { implementation 404 impl AsRawFd for TcpListener { implementation 410 impl AsFd for TcpListener { implementation
|
D | socket.rs | 701 pub fn listen(self, backlog: u32) -> io::Result<TcpListener> { in listen()
|
/external/rust/android-crates-io/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/android-crates-io/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/android-crates-io/crates/mio/src/sys/unix/ |
D | tcp.rs | 22 pub(crate) fn bind(socket: &net::TcpListener, addr: SocketAddr) -> io::Result<()> { in bind() 41 pub(crate) fn listen(socket: &net::TcpListener, backlog: u32) -> io::Result<()> { in listen() 47 pub(crate) fn set_reuseaddr(socket: &net::TcpListener, reuseaddr: bool) -> io::Result<()> { in set_reuseaddr()
|
/external/rust/android-crates-io/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/android-crates-io/crates/grpcio-sys/grpc/src/core/ext/xds/ |
D | xds_listener.h | 177 struct TcpListener { struct 178 std::string address; // host:port listening address 179 FilterChainMap filter_chain_map; 180 absl::optional<FilterChainData> default_filter_chain;
|
/external/grpc-grpc/src/core/ext/xds/ |
D | xds_listener.h | 189 struct TcpListener { struct 190 std::string address; // host:port listening address 191 FilterChainMap filter_chain_map; 192 absl::optional<FilterChainData> default_filter_chain;
|
/external/rust/android-crates-io/crates/tokio-util/src/net/ |
D | mod.rs | 34 impl Listener for tokio::net::TcpListener { implementation
|
/external/rust/android-crates-io/crates/tonic/src/transport/server/ |
D | incoming.rs | 178 listener: TcpListener, in from_listener()
|
/external/crosvm/base/src/sys/unix/ |
D | descriptor.rs | 139 impl From<SafeDescriptor> for TcpListener { implementation
|
D | net.rs | 213 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
|