Home
last modified time | relevance | path

Searched defs:TimerHandle (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/tokio/src/runtime/time/wheel/
Dmod.rs93 item: TimerHandle, in insert()
94 ) -> Result<u64, (TimerHandle, InsertError)> { in insert()
145 pub(crate) fn poll(&mut self, now: u64) -> Option<TimerHandle> { in poll()
Dlevel.rs204 pub(crate) unsafe fn add_entry(&mut self, item: TimerHandle) { in add_entry()
/external/rust/crates/tokio/src/runtime/time/
Dentry.rs322 pub(crate) struct TimerHandle { struct
323 inner: NonNull<TimerShared>,
417 pub(super) fn handle(&self) -> TimerHandle { in handle()
584 impl TimerHandle { impl
/external/python/cpython3/Lib/asyncio/
Devents.py98 class TimerHandle(Handle): class