Home
last modified time | relevance | path

Searched defs:stream (Results 1 – 17 of 17) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/linux/tcp/
Dmod.rs22 mod stream; module
Dlistener.rs56 let stream = match syscall!(accept4( in accept() localVariable
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/sys/tcp/
Dmod.rs17 mod stream; module
Dlistener.rs104 let stream = TcpStream::new(stream)?; in accept() localVariable
Dstream.rs96 let stream = super::super::addr::each_addr(addr, ylong_io::TcpStream::connect).await?; in connect() localVariable
101 let stream = TcpStream::new(stream)?; in connect_inner() localVariable
/commonlibrary/rust/ylong_runtime/ylong_io/src/sys/windows/tcp/
Dmod.rs20 mod stream; module
Dstream.rs44 let stream = unsafe { TcpStream::from_raw_socket(socket.as_raw_socket() as _) }; in connect() localVariable
/commonlibrary/rust/ylong_runtime/ylong_io/examples/
Dylong_io_tcp_client.rs27 let mut stream = match TcpStream::connect(addr) { in main() localVariable
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/ssl_stream/
Dwrapper.rs23 pub(crate) stream: S, field
36 let stream = Pin::new_unchecked(&mut self.stream); in inner() localVariable
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/ssl/
Dmod.rs19 mod stream; module
Dssl_base.rs60 let mut stream = SslStream::new_base(self, stream)?; in connect() localVariable
/commonlibrary/rust/ylong_runtime/ylong_runtime/benches/bin/
Dylong_runtime_tcp_client_perf.rs25 let mut stream = match TcpStream::connect(addr).await { in main() localVariable
/commonlibrary/rust/ylong_http/ylong_http_client/tests/common/
Dmod.rs196 let mut stream = tokio_openssl::SslStream::new(ssl, stream).expect("SslStream Error"); localVariable
/commonlibrary/rust/ylong_http/ylong_http_client/src/sync_impl/
Dconnector.rs133 let stream = tls_ssl.into_inner().connect(tcp_stream).map_err(|e| { in connect() localVariable
/commonlibrary/rust/ylong_http/ylong_http_client/src/async_impl/
Dconnector.rs156 let mut stream = config in connect() localVariable
/commonlibrary/rust/ylong_http/ylong_http/src/body/mime/
Dmod.rs385 pub fn stream<T: AsyncRead + Send + Sync + 'static>(mut self, body: T) -> Self { in stream() method
490 fn stream(reader: Pin<Box<dyn AsyncRead + Send + Sync>>) -> Self { in stream() method
/commonlibrary/rust/ylong_http/ylong_http_client/src/util/c_openssl/
Dbio.rs129 pub(crate) stream: S, field