Searched refs:inAbstime (Results 1 - 2 of 2) sorted by last modified time

/macosx-10.10/xnu-2782.1.97/iokit/Kernel/
H A DIOTimerEventSource.cpp327 IOReturn IOTimerEventSource::wakeAtTime(UInt32 inAbstime, UInt32 scale_factor) argument
330 clock_interval_to_absolutetime_interval(inAbstime, scale_factor, &end);
336 IOReturn IOTimerEventSource::wakeAtTime(mach_timespec_t inAbstime) argument
341 (inAbstime.tv_nsec, kNanosecondScale, &nsecs);
343 (inAbstime.tv_sec, kSecondScale, &end);
357 IOReturn IOTimerEventSource::wakeAtTime(AbsoluteTime inAbstime) argument
362 abstime = inAbstime;
363 if ( enabled && AbsoluteTime_to_scalar(&inAbstime) && AbsoluteTime_to_scalar(&abstime) && workLoop )
372 (void *)(uintptr_t) reserved->calloutGeneration, inAbstime))
379 thread_call_enter_delayed((thread_call_t) calloutEntry, inAbstime);
[all...]
/macosx-10.10/IOATAFamily-253.0.1/
H A DATATimerEventSource.cpp136 IOReturn ATATimerEventSource::wakeAtTime(UnsignedWide inAbstime) argument
140 UInt64 abstime = (UInt64)inAbstime.hi << 32 | (UInt64)inAbstime.lo;
143 return super::wakeAtTime(inAbstime);

Completed in 95 milliseconds