Home
last modified time | relevance | path

Searched refs:start_handler (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/rayon-core/src/
Dlib.rs135 start_handler: Option<Box<StartHandler>>, field
179 start_handler: None, in default()
363 start_handler: self.start_handler, in spawn_handler()
525 self.start_handler.take() in take_start_handler()
534 pub fn start_handler<H>(mut self, start_handler: H) -> Self in start_handler() method
538 self.start_handler = Some(Box::new(start_handler)); in start_handler()
613 pub fn start_handler<H>(mut self, start_handler: H) -> Configuration in start_handler() method
617 self.builder = self.builder.start_handler(start_handler); in start_handler()
685 ref start_handler, in fmt()
701 let start_handler = start_handler.as_ref().map(|_| ClosurePlaceholder); in fmt() localVariable
[all …]
Dtest.rs27 let start_handler = move |_| { in start_callback_called() localVariable
34 .start_handler(start_handler); in start_callback_called()
81 let start_handler = move |_| { in handler_panics_handled_correctly() localVariable
102 .start_handler(start_handler) in handler_panics_handled_correctly()
141 let start_handler = move |_| {}; in configuration() localVariable
153 .start_handler(start_handler) in configuration()
Dregistry.rs140 start_handler: Option<Box<StartHandler>>, field
245 start_handler: builder.take_start_handler(), in new()
822 if let Some(ref handler) = registry.start_handler { in main_loop()
/external/rust/crates/rayon-core/src/thread_pool/
Dtest.rs101 let (start_count, start_handler) = count_handler(); in failed_thread_stack()
106 .start_handler(start_handler) in failed_thread_stack()
121 let (start_count, start_handler) = count_handler(); in panic_thread_name()
125 .start_handler(start_handler) in panic_thread_name()