Home
last modified time | relevance | path

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

/external/lzma/CPP/Windows/
DSynchronization.h28 …WRes Create(bool manualReset, bool initiallyOwn, LPCTSTR name = NULL, LPSECURITY_ATTRIBUTES sa = N…
30 _object = ::CreateEvent(sa, BoolToBOOL(manualReset), BoolToBOOL(initiallyOwn), name);
53 WRes Create(bool initiallyOwn = false)
55 return ManualResetEvent_Create(&_object, initiallyOwn ? 1: 0);
64 WRes CreateWithName(bool initiallyOwn, LPCTSTR name) in CreateWithName() argument
66 return CBaseEvent::Create(true, initiallyOwn, name); in CreateWithName()
96 WRes Create(bool initiallyOwn, LPCTSTR name = NULL, LPSECURITY_ATTRIBUTES sa = NULL)
98 _handle = ::CreateMutex(sa, BoolToBOOL(initiallyOwn), name);