Home
last modified time | relevance | path

Searched refs:timedWait (Results 1 – 18 of 18) sorted by relevance

/external/webkit/Source/JavaScriptCore/wtf/
DThreadingWin.cpp326 bool PlatformCondition::timedWait(PlatformMutex& mutex, DWORD durationMilliseconds) in timedWait() function in WTF::PlatformCondition
458 m_condition.timedWait(mutex.impl(), INFINITE); in wait()
461 bool ThreadCondition::timedWait(Mutex& mutex, double absoluteTime) in timedWait() function in WTF::ThreadCondition
471 return m_condition.timedWait(mutex.impl(), interval); in timedWait()
DThreadingPrimitives.h91 bool timedWait(PlatformMutex&, DWORD durationMilliseconds);
145 bool timedWait(Mutex&, double absoluteTime);
DThreadingNone.cpp54 bool ThreadCondition::timedWait(Mutex&, double) { return false; } in timedWait() function in WTF::ThreadCondition
DMessageQueue.h137 timedOut = !m_condition.timedWait(m_mutex, absoluteTime); in waitForMessageFilteredWithTimeout()
DThreadingPthreads.cpp364 bool ThreadCondition::timedWait(Mutex& mutex, double absoluteTime) in timedWait() function in WTF::ThreadCondition
/external/webkit/Source/WebKit2/Platform/CoreIPC/
DBinarySemaphore.cpp56 timedOut = !m_condition.timedWait(m_mutex, absoluteTime); in wait()
DConnection.cpp353 if (!m_waitForMessageCondition.timedWait(m_waitForMessageMutex, absoluteTime)) { in waitForMessage()
/external/webkit/Source/WebKit2/win/
DWebKit2.def126 ?timedWait@ThreadCondition@WTF@@QAE_NAAVMutex@2@N@Z
DWebKit2CFLite.def119 ?timedWait@ThreadCondition@WTF@@QAE_NAAVMutex@2@N@Z
/external/webkit/Source/JavaScriptCore/wtf/gtk/
DThreadingGtk.cpp213 bool ThreadCondition::timedWait(Mutex& mutex, double absoluteTime) in timedWait() function in WTF::ThreadCondition
/external/webkit/Source/WebKit/win/WebKit.vcproj/
DWebKit_Cairo_debug.def129 ?timedWait@ThreadCondition@WTF@@QAE_NAAVMutex@2@N@Z
DWebKit_Cairo.def129 ?timedWait@ThreadCondition@WTF@@QAE_NAAVMutex@2@N@Z
/external/webkit/Source/JavaScriptCore/wtf/qt/
DThreadingQt.cpp256 bool ThreadCondition::timedWait(Mutex& mutex, double absoluteTime) in timedWait() function in WTF::ThreadCondition
/external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
DJavaScriptCore.def330 ?timedWait@ThreadCondition@WTF@@QAE_NAAVMutex@2@N@Z
/external/webkit/Source/JavaScriptCore/
DChangeLog-2009-06-16347 (WTF::ThreadCondition::timedWait): Ditto.
1148 (WTF::ThreadCondition::timedWait): Ditto.
10493 (WTF::ThreadCondition::timedWait):
10495 (WTF::ThreadCondition::timedWait):
11912 Forgot to expose ThreadCondition::timedWait() in one of previous patches.
12382 Implement ThreadCondition::timedWait().
12384 I did the same for timedWait(). See comments in ThreadingWin.cpp for
12394 (WTF::PlatformCondition::timedWait): new method, derived from Pthreads-win32.
12398 (WTF::ThreadCondition::wait): this now calls PlatformCondition::timedWait.
12399 (WTF::ThreadCondition::timedWait): same
[all …]
DChangeLog-2008-08-1017318 (WTF::ThreadCondition::timedWait):
19491 (WTF::ThreadCondition::timedWait):
19510 (WTF::ThreadCondition::timedWait):
19524 Add a timedWait() method to ThreadCondition
19531 (WTF::ThreadCondition::timedWait):
19534 (WTF::ThreadCondition::timedWait):
19537 (WTF::ThreadCondition::timedWait):
19540 (WTF::ThreadCondition::timedWait): Needs implementation
DChangeLog-2011-02-16414 Fix Mutex::tryLock() on Windows to work properly with PlatformCondition::timedWait()
418 (WTF::PlatformCondition::timedWait):
4154 (WTF::ThreadCondition::timedWait): Moved code to convert the absolute time to a wait
/external/webkit/Source/WebKit/win/
DChangeLog-2009-06-161049 Export WTF::ThreadCondition::timedWait.