Home
last modified time | relevance | path

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

/external/rust/crates/tokio/src/time/driver/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.rs205 pub(crate) unsafe fn add_entry(&mut self, item: TimerHandle) { in add_entry()
/external/rust/crates/tokio/src/time/driver/
Dentry.rs316 pub(crate) struct TimerHandle { struct
317 inner: NonNull<TimerShared>,
402 pub(super) fn handle(&self) -> TimerHandle { in handle()
560 impl TimerHandle { impl
/external/python/cpython3/Lib/asyncio/
Devents.py98 class TimerHandle(Handle): class