HomeSort by relevance Sort by last modified time
    Searched full:absolutetime (Results 1 - 11 of 11) sorted by null

  /external/webkit/JavaScriptCore/wtf/gtk/
ThreadingGtk.cpp 214 bool ThreadCondition::timedWait(Mutex& mutex, double absoluteTime)
217 if (absoluteTime < currentTime())
221 if (absoluteTime > INT_MAX) {
226 int timeSeconds = static_cast<int>(absoluteTime);
227 int timeMicroseconds = static_cast<int>((absoluteTime - timeSeconds) * 1000000.0);
  /external/webkit/JavaScriptCore/wtf/
MessageQueue.h 63 PassOwnPtr<DataType> waitForMessageFilteredWithTimeout(MessageQueueWaitResult&, Predicate&, double absoluteTime);
129 inline PassOwnPtr<DataType> MessageQueue<DataType>::waitForMessageFilteredWithTimeout(MessageQueueWaitResult& result, Predicate& predicate, double absoluteTime)
136 timedOut = !m_condition.timedWait(m_mutex, absoluteTime);
138 ASSERT(!timedOut || absoluteTime != infiniteTime());
ThreadingPthreads.cpp 359 bool ThreadCondition::timedWait(Mutex& mutex, double absoluteTime)
361 if (absoluteTime < currentTime())
364 if (absoluteTime > INT_MAX) {
369 int timeSeconds = static_cast<int>(absoluteTime);
370 int timeNanoseconds = static_cast<int>((absoluteTime - timeSeconds) * 1E9);
Threading.h 210 // Returns true if the condition was signaled before absoluteTime, false if the absoluteTime was reached or is in the past.
211 // The absoluteTime is in seconds, starting on January 1, 1970. The time is assumed to use the same time zone as WTF::currentTime().
212 bool timedWait(Mutex&, double absoluteTime);
ThreadingWin.cpp 465 bool ThreadCondition::timedWait(Mutex& mutex, double absoluteTime)
470 if (absoluteTime < currentTime)
474 if (absoluteTime - currentTime > static_cast<double>(INT_MAX) / 1000.0) {
479 double intervalMilliseconds = (absoluteTime - currentTime) * 1000.0;
  /external/webkit/JavaScriptCore/wtf/qt/
ThreadingQt.cpp 263 bool ThreadCondition::timedWait(Mutex& mutex, double absoluteTime)
268 if (absoluteTime < currentTime)
272 if (absoluteTime - currentTime > static_cast<double>(INT_MAX) / 1000.0) {
277 double intervalMilliseconds = (absoluteTime - currentTime) * 1000.0;
  /external/webkit/WebCore/workers/
WorkerRunLoop.cpp 151 double absoluteTime = (predicate.isDefaultMode() && m_sharedTimer->isActive()) ? m_sharedTimer->fireTime() : MessageQueue<Task>::infiniteTime();
153 OwnPtr<WorkerRunLoop::Task> task = m_messageQueue.waitForMessageFilteredWithTimeout(result, predicate, absoluteTime);
  /external/qemu/distrib/sdl-1.2.12/src/timer/macos/
FastTimes.c 93 typedef AbsoluteTime (*UpTimeProcPtr)(void);
94 typedef Nanoseconds (*A2NSProcPtr)(AbsoluteTime);
  /external/webkit/WebKit/win/
MarshallingHelpers.cpp 151 DATE MarshallingHelpers::CFAbsoluteTimeToDATE(CFAbsoluteTime absoluteTime)
153 return (round(absoluteTime)/secondsPerDay - windowsEpochAbsoluteTime());
  /dalvik/vm/
Sync.c 663 void absoluteTime(s8 msec, s4 nsec, struct timespec *ts)
697 absoluteTime(msec, nsec, &ts);
765 absoluteTime(msec, nsec, &ts);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzVideo.m     [all...]

Completed in 229 milliseconds