Home
last modified time | relevance | path

Searched refs:CancellableBlockingPool (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/crosvm/cros_async/src/blocking/
H A Dcancellable_pool.rs27 static EXECUTOR: Lazy<CancellableBlockingPool> =
28 Lazy::new(|| CancellableBlockingPool::new(256, Duration::from_secs(10)));
126 pub struct CancellableBlockingPool { struct
130 impl CancellableBlockingPool { argument
142 pub fn new(max_threads: usize, keepalive: Duration) -> CancellableBlockingPool { in new() argument
143 CancellableBlockingPool { in new()
153 pub fn with_capacity(max_threads: usize, keepalive: Duration) -> CancellableBlockingPool { in with_capacity() argument
154 CancellableBlockingPool { in with_capacity()
311 impl Default for CancellableBlockingPool { implementation
312 fn default() -> CancellableBlockingPool { in default()
[all …]
/aosp_15_r20/external/crosvm/cros_async/src/sys/windows/
H A Dhandle_source.rs36 use crate::CancellableBlockingPool;
122 blocking_pool: CancellableBlockingPool,
146 blocking_pool: CancellableBlockingPool::new( in new()
/aosp_15_r20/external/crosvm/cros_async/src/
H A Dlib.rs87 pub use blocking::CancellableBlockingPool;