Home
last modified time | relevance | path

Searched defs:OwnedSocket (Results 1 – 11 of 11) sorted by relevance

/external/rust/android-crates-io/crates/rustix/src/maybe_polyfill/no_std/os/windows/io/
Dsocket.rs68 pub struct OwnedSocket { struct
69 socket: RawSocket,
104 impl AsRawSocket for OwnedSocket { implementation
112 impl IntoRawSocket for OwnedSocket { implementation
122 impl FromRawSocket for OwnedSocket { implementation
131 impl Drop for OwnedSocket { implementation
150 impl fmt::Debug for OwnedSocket { implementation
191 impl AsSocket for OwnedSocket { implementation
/external/cronet/stable/third_party/boringssl/src/crypto/bio/
Dbio_test.cc66 class OwnedSocket { class
69 explicit OwnedSocket(Socket sock) : sock_(sock) {} in OwnedSocket() function in OwnedSocket
70 OwnedSocket(OwnedSocket &&other) { *this = std::move(other); } in OwnedSocket() function in OwnedSocket
/external/cronet/stable/third_party/boringssl/src/ssl/test/
Dbssl_shim.cc101 class OwnedSocket { class
104 explicit OwnedSocket(Socket sock) : sock_(sock) {} in OwnedSocket() function in OwnedSocket
105 OwnedSocket(OwnedSocket &&other) { *this = std::move(other); } in OwnedSocket() function in OwnedSocket
/external/cronet/tot/third_party/boringssl/src/ssl/test/
Dbssl_shim.cc101 class OwnedSocket { class
104 explicit OwnedSocket(Socket sock) : sock_(sock) {} in OwnedSocket() function in OwnedSocket
105 OwnedSocket(OwnedSocket &&other) { *this = std::move(other); } in OwnedSocket() function in OwnedSocket
/external/cronet/tot/third_party/boringssl/src/crypto/bio/
Dbio_test.cc66 class OwnedSocket { class
69 explicit OwnedSocket(Socket sock) : sock_(sock) {} in OwnedSocket() function in OwnedSocket
70 OwnedSocket(OwnedSocket &&other) { *this = std::move(other); } in OwnedSocket() function in OwnedSocket
/external/boringssl/src/crypto/bio/
Dbio_test.cc68 class OwnedSocket { class
71 explicit OwnedSocket(Socket sock) : sock_(sock) {} in OwnedSocket() function in __anond01bcfc60111::OwnedSocket
72 OwnedSocket(OwnedSocket &&other) { *this = std::move(other); } in OwnedSocket() function in __anond01bcfc60111::OwnedSocket
/external/boringssl/src/ssl/test/
Dbssl_shim.cc101 class OwnedSocket { class
104 explicit OwnedSocket(Socket sock) : sock_(sock) {} in OwnedSocket() function in OwnedSocket
105 OwnedSocket(OwnedSocket &&other) { *this = std::move(other); } in OwnedSocket() function in OwnedSocket
/external/rust/android-crates-io/crates/mio/src/net/tcp/
Dlistener.rs255 impl From<TcpListener> for OwnedSocket { implementation
Dstream.rs437 impl From<TcpStream> for OwnedSocket { implementation
/external/rust/android-crates-io/crates/socket2/src/sys/
Dwindows.rs1004 impl From<crate::Socket> for OwnedSocket { implementation
1005 fn from(sock: crate::Socket) -> OwnedSocket { in from()
/external/rust/android-crates-io/crates/mio/src/net/
Dudp.rs731 impl From<UdpSocket> for OwnedSocket { implementation