Home
last modified time | relevance | path

Searched refs:BinarySemaphore (Results 1 – 12 of 12) sorted by relevance

/external/webkit/Source/WebKit2/Platform/CoreIPC/
DBinarySemaphore.cpp33 BinarySemaphore::BinarySemaphore() in BinarySemaphore() function in CoreIPC::BinarySemaphore
38 BinarySemaphore::~BinarySemaphore() in ~BinarySemaphore()
42 void BinarySemaphore::signal() in signal()
50 bool BinarySemaphore::wait(double absoluteTime) in wait()
DBinarySemaphore.h34 class BinarySemaphore {
35 WTF_MAKE_NONCOPYABLE(BinarySemaphore);
38 BinarySemaphore();
39 ~BinarySemaphore();
DConnection.cpp87 BinarySemaphore m_waitForSyncReplySemaphore;
/external/webkit/Source/WebKit2/Platform/CoreIPC/win/
DBinarySemaphoreWin.cpp31 BinarySemaphore::BinarySemaphore() in BinarySemaphore() function in CoreIPC::BinarySemaphore
36 BinarySemaphore::~BinarySemaphore() in ~BinarySemaphore()
41 void BinarySemaphore::signal() in signal()
46 bool BinarySemaphore::wait(double absoluteTime) in wait()
/external/webkit/Source/WebKit2/Platform/
DRunLoop.h47 class BinarySemaphore; variable
65 …static bool dispatchSentMessagesUntil(const Vector<HWND>& windows, CoreIPC::BinarySemaphore&, doub…
/external/webkit/Source/WebKit2/Platform/win/
DRunLoopWin.cpp82 bool RunLoop::dispatchSentMessagesUntil(const Vector<HWND>& windows, CoreIPC::BinarySemaphore& sema… in dispatchSentMessagesUntil()
/external/webkit/Source/WebKit2/
DWebKit2.pro96 Platform/CoreIPC/BinarySemaphore.h \
302 Platform/CoreIPC/BinarySemaphore.cpp \
DGNUmakefile.am89 Source/WebKit2/Platform/CoreIPC/BinarySemaphore.cpp \
90 Source/WebKit2/Platform/CoreIPC/BinarySemaphore.h \
DChangeLog-2011-02-164607 Change BinarySemaphore to wrap an auto-reset Win32 event on Windows
4613 * Platform/CoreIPC/BinarySemaphore.cpp: Wrap this implementation in #if !PLATFORM(WIN).
4615 * Platform/CoreIPC/BinarySemaphore.h: Make the Windows implementation have a single HANDLE
4618 …oreIPC/win/BinarySemaphoreWin.cpp: Copied from Source/WebKit2/Platform/CoreIPC/BinarySemaphore.cpp.
4619 (CoreIPC::BinarySemaphore::BinarySemaphore): Create our event.
4620 (CoreIPC::BinarySemaphore::~BinarySemaphore): Destory our event.
4621 (CoreIPC::BinarySemaphore::signal): Signal the event.
4622 (CoreIPC::BinarySemaphore::wait): Convert the absolute time to a wait interval, then wait
4723 * Platform/CoreIPC/BinarySemaphore.cpp:
25870 Add BinarySemaphore class to CoreIPC and use it in Connection::waitForSyncReply
[all …]
DChangeLog1969 * Platform/CoreIPC/BinarySemaphore.h:
1970 (CoreIPC::BinarySemaphore::event): Added. Simple getter to expose the underlying event
/external/webkit/Source/WebKit2/WebKit2.xcodeproj/
Dproject.pbxproj204 …C71263C88300054E94 /* BinarySemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AC41AC5126…
205 …81263C88300054E94 /* BinarySemaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC41AC612…
1083 …8300054E94 /* BinarySemaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType …
1084 …0054E94 /* BinarySemaphore.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =…
2205 1AC41AC61263C88300054E94 /* BinarySemaphore.cpp */,
2206 1AC41AC51263C88300054E94 /* BinarySemaphore.h */,
3499 1AC41AC71263C88300054E94 /* BinarySemaphore.h in Headers */,
4105 1AC41AC81263C88300054E94 /* BinarySemaphore.cpp in Sources */,
/external/webkit/Source/JavaScriptCore/
DChangeLog-2011-02-164144 Fixes <http://webkit.org/b/53208> <rdar://problem/8922490> BinarySemaphore should wrap a