Home
last modified time | relevance | path

Searched refs:JoinHandle (Results 1 – 6 of 6) sorted by relevance

/third_party/rust/crates/tracing/tracing-appender/benches/
Dbench.rs3 thread::{self, JoinHandle},
50 let mut handles: Vec<JoinHandle<()>> = Vec::new(); in synchronous_benchmark()
100 let mut handles: Vec<JoinHandle<()>> = Vec::new(); in non_blocking_benchmark()
/third_party/rust/crates/tracing/tracing-appender/src/
Dnon_blocking.rs57 use std::thread::JoinHandle;
106 _guard: Option<JoinHandle<()>>,
260 fn new(handle: JoinHandle<()>, sender: Sender<Msg>, shutdown: Sender<()>) -> Self { in new() argument
451 let mut join_handles: Vec<JoinHandle<()>> = Vec::with_capacity(10); in multi_threaded_writes()
Dworker.rs70 pub(crate) fn worker_thread(mut self) -> std::thread::JoinHandle<()> { in worker_thread() argument
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
Dserver.rs3 use std::thread::{self, JoinHandle};
8 handle: Option<JoinHandle<()>>,
/third_party/rust/crates/signal-hook/tests/
Diterator.rs9 use std::thread::{self, JoinHandle};
111 thread: Option<JoinHandle<()>>, in signals_block_wait()
/third_party/rust/crates/io-lifetimes/src/
Dimpls_std.rs869 impl<T> AsHandle for std::thread::JoinHandle<T> { implementation
877 impl<T> IntoHandle for std::thread::JoinHandle<T> { implementation
885 impl<T> From<std::thread::JoinHandle<T>> for OwnedHandle {
887 fn from(owned: std::thread::JoinHandle<T>) -> Self { in from()