Lines Matching refs:try_select
98 fn try_select(&self, token: &mut Token) -> bool; in try_select() method
123 fn try_select(&self, token: &mut Token) -> bool { in try_select() method
124 (**self).try_select(token) in try_select()
202 if handle.try_select(&mut token) { in run_select()
215 cx.try_select(Selected::Aborted).unwrap(); in run_select()
225 sel = match cx.try_select(Selected::Aborted) { in run_select()
271 if i == index_ready && handle.try_select(&mut token) { in run_select()
303 if handle.try_select(&mut token) { in run_select()
383 sel = match cx.try_select(Selected::Operation(oper)) { in run_ready()
446 pub fn try_select<'a>( in try_select() function
754 pub fn try_select(&mut self) -> Result<SelectedOperation<'a>, TrySelectError> { in try_select() method
755 try_select(&mut self.handles) in try_select()