Searched refs:calloutEntry (Results 1 - 2 of 2) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIOTimerEventSource.cpp132 calloutEntry = (void *) thread_call_allocate((thread_call_func_t) &IOTimerEventSource::timeoutAndRelease,
142 if (!calloutEntry)
163 if (calloutEntry) {
165 thread_call_free((thread_call_t) calloutEntry);
178 bool active = thread_call_cancel((thread_call_t) calloutEntry);
198 bool active = thread_call_cancel((thread_call_t) calloutEntry);
310 if (thread_call_enter1_delayed((thread_call_t) calloutEntry,
318 thread_call_enter_delayed((thread_call_t) calloutEntry, inAbstime);
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/
H A DIOTimerEventSource.h64 /*! @var calloutEntry thread_call entry for preregistered thread callouts */
65 void *calloutEntry; member in class:IOTimerEventSource
90 @abstract Set's timeout as the function of calloutEntry.
91 @discussion IOTimerEventSource is based upon the kern/thread_call.h APIs currently. This function allocates the calloutEntry member variable by using thread_call_allocate(timeout, this). If you need to write your own subclass of IOTimerEventSource you probably should override this method to allocate an entry that points to your own timeout routine. */
95 @abstract Sub-class implementation of free method, frees calloutEntry */

Completed in 24 milliseconds