Home
last modified time | relevance | path

Searched refs:blocking_accept (Results 1 – 5 of 5) sorted by relevance

/wasmtime-44.0.1/crates/test-programs/src/bin/
H A Dp2_tcp_sample_application.rs29 let (_accepted, input, _output) = listener.blocking_accept().unwrap(); in test_tcp_sample_application()
49 let (_accepted, input, _output) = listener.blocking_accept().unwrap(); in test_tcp_sample_application()
H A Dp2_tcp_sockopts.rs133 let (accepted_client, _, _) = listener.blocking_accept().unwrap(); in test_tcp_sockopt_inheritance()
199 let (accepted_client, _, _) = listener.blocking_accept().unwrap(); in test_tcp_sockopt_after_listen()
H A Dp2_tcp_streams.rs144 let (accepted_socket, accepted_input, accepted_output) = listener.blocking_accept().unwrap(); in setup()
H A Dp2_tcp_bind.rs67 listener1.blocking_accept().unwrap(); in test_tcp_bind_reuseaddr()
/wasmtime-44.0.1/crates/test-programs/src/
H A Dsockets.rs173 pub fn blocking_accept(&self) -> Result<(TcpSocket, InputStream, OutputStream), ErrorCode> { in blocking_accept() method