Searched refs:absoluteTime (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/workers/
H A DWorkerRunLoop.cpp154 double absoluteTime = 0.0; local
156 absoluteTime = (predicate.isDefaultMode() && m_sharedTimer->isActive()) ? m_sharedTimer->fireTime() : MessageQueue<Task>::infiniteTime();
158 OwnPtr<WorkerRunLoop::Task> task = m_messageQueue.waitForMessageFilteredWithTimeout(result, predicate, absoluteTime);
/macosx-10.9.5/WebKit2-7537.78.2/Platform/CoreIPC/win/
H A DConnectionWin.cpp310 bool Connection::dispatchSentMessagesUntil(const Vector<HWND>& windows, WTF::BinarySemaphore& semaphore, double absoluteTime) argument
313 return semaphore.wait(absoluteTime);
319 DWORD interval = absoluteTimeToWaitTimeoutInterval(absoluteTime);
332 // absoluteTime was reached.
/macosx-10.9.5/WebKit2-7537.78.2/Platform/CoreIPC/
H A DConnection.cpp49 bool wait(double absoluteTime) argument
51 return m_waitForSyncReplySemaphore.wait(absoluteTime);
402 double absoluteTime = currentTime() + timeout; local
429 if (!m_waitForMessageCondition.timedWait(m_waitForMessageMutex, absoluteTime)) {
532 double absoluteTime = currentTime() + timeout; local
568 timedOut = currentTime() >= absoluteTime;
571 timedOut = !m_syncMessageState->wait(absoluteTime);
H A DConnection.h331 // The absoluteTime is in seconds, starting on January 1, 1970. The time is assumed to use the
333 // set of HWNDs until the semaphore is signaled or absoluteTime is reached. Returns true if the
335 static bool dispatchSentMessagesUntil(const Vector<HWND>& windows, WTF::BinarySemaphore& semaphore, double absoluteTime);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DMarshallingHelpers.cpp137 DATE MarshallingHelpers::CFAbsoluteTimeToDATE(CFAbsoluteTime absoluteTime) argument
139 return (round(absoluteTime)/secondsPerDay - windowsEpochAbsoluteTime());
/macosx-10.9.5/WebKit2-7537.78.2/Shared/cf/
H A DArgumentCodersCF.cpp322 double absoluteTime; local
323 if (!decoder.decode(absoluteTime))
326 result = adoptCF(CFDateCreate(0, absoluteTime));

Completed in 93 milliseconds