Lines Matching refs:IOTimerEventSource
54 OSDefineMetaClassAndStructors(IOTimerEventSource, IOEventSource)
55 OSMetaClassDefineReservedUsedX86(IOTimerEventSource, 0);
56 OSMetaClassDefineReservedUsedX86(IOTimerEventSource, 1);
57 OSMetaClassDefineReservedUsedX86(IOTimerEventSource, 2);
58 OSMetaClassDefineReservedUnused(IOTimerEventSource, 3);
59 OSMetaClassDefineReservedUnused(IOTimerEventSource, 4);
60 OSMetaClassDefineReservedUnused(IOTimerEventSource, 5);
61 OSMetaClassDefineReservedUnused(IOTimerEventSource, 6);
62 OSMetaClassDefineReservedUnused(IOTimerEventSource, 7);
105 IOTimerEventSource::invokeAction(IOEventSource::Action _action, IOTimerEventSource * ts, in invokeAction()
124 ((IOTimerEventSource::ActionBlock) actionBlock)(ts); in invokeAction()
126 ((IOTimerEventSource::Action)_action)(_owner, ts); in invokeAction()
141 IOTimerEventSource::timeout(void *self) in timeout()
143 IOTimerEventSource *me = (IOTimerEventSource *) self; in timeout()
165 IOTimerEventSource::timeoutAndRelease(void * self, void * c) in timeoutAndRelease()
167 IOTimerEventSource *me = (IOTimerEventSource *) self; in timeoutAndRelease()
199 IOTimerEventSource::checkForWork() in checkForWork()
214 IOTimerEventSource::timeoutSignaled(void * self, void * c) in timeoutSignaled()
216 IOTimerEventSource *me = (IOTimerEventSource *) self; in timeoutSignaled()
227 IOTimerEventSource::setTimeoutFunc() in setTimeoutFunc()
251 func = &IOTimerEventSource::timeoutAndRelease; in setTimeoutFunc()
256 func = &IOTimerEventSource::timeoutAndRelease; in setTimeoutFunc()
261 func = &IOTimerEventSource::timeoutAndRelease; in setTimeoutFunc()
266 func = &IOTimerEventSource::timeoutAndRelease; in setTimeoutFunc()
271 func = &IOTimerEventSource::timeoutAndRelease; in setTimeoutFunc()
280 func = &IOTimerEventSource::timeoutSignaled; in setTimeoutFunc()
307 IOTimerEventSource::init(OSObject *inOwner, Action inAction) in init()
324 IOTimerEventSource::init(uint32_t options, OSObject *inOwner, Action inAction) in init()
331 IOTimerEventSource *
332 IOTimerEventSource::timerEventSource(uint32_t inOptions, OSObject *inOwner, Action inAction) in timerEventSource()
334 IOTimerEventSource *me = new IOTimerEventSource; in timerEventSource()
344 IOTimerEventSource *
345 IOTimerEventSource::timerEventSource(uint32_t options, OSObject *inOwner, ActionBlock _action) in timerEventSource()
347 IOTimerEventSource * tes; in timerEventSource()
348 tes = IOTimerEventSource::timerEventSource(options, inOwner, (Action) NULL); in timerEventSource()
358 IOTimerEventSource *
359 IOTimerEventSource::timerEventSource(OSObject *inOwner, Action inAction) in timerEventSource()
361 return IOTimerEventSource::timerEventSource( in timerEventSource()
367 IOTimerEventSource::free() in free()
386 IOTimerEventSource::cancelTimeout() in cancelTimeout()
400 IOTimerEventSource::enable() in enable()
409 IOTimerEventSource::disable() in disable()
423 IOTimerEventSource::setTimeoutTicks(UInt32 ticks) in setTimeoutTicks()
429 IOTimerEventSource::setTimeoutMS(UInt32 ms) in setTimeoutMS()
435 IOTimerEventSource::setTimeoutUS(UInt32 us) in setTimeoutUS()
441 IOTimerEventSource::setTimeout(UInt32 interval, UInt32 scale_factor) in setTimeout()
451 IOTimerEventSource::setTimeout(mach_timespec_t interval) in setTimeout()
466 IOTimerEventSource::setTimeout(AbsoluteTime interval) in setTimeout()
474 IOTimerEventSource::setTimeout(uint32_t options, in setTimeout()
488 IOTimerEventSource::wakeAtTimeTicks(UInt32 ticks) in wakeAtTimeTicks()
494 IOTimerEventSource::wakeAtTimeMS(UInt32 ms) in wakeAtTimeMS()
500 IOTimerEventSource::wakeAtTimeUS(UInt32 us) in wakeAtTimeUS()
506 IOTimerEventSource::wakeAtTime(UInt32 inAbstime, UInt32 scale_factor) in wakeAtTime()
516 IOTimerEventSource::wakeAtTime(mach_timespec_t inAbstime) in wakeAtTime()
531 IOTimerEventSource::setWorkLoop(IOWorkLoop *inWorkLoop) in setWorkLoop()
540 IOTimerEventSource::wakeAtTime(AbsoluteTime inAbstime) in wakeAtTime()
546 IOTimerEventSource::wakeAtTime(uint32_t options, AbsoluteTime inAbstime, AbsoluteTime leeway) in wakeAtTime()