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

/external/lzma/CPP/Windows/
H A DSynchronization.h28 WRes Create(bool manualReset, bool initiallyOwn, LPCTSTR name = NULL, LPSECURITY_ATTRIBUTES sa = NULL) argument
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) argument
66 return CBaseEvent::Create(true, initiallyOwn, name);
96 WRes Create(bool initiallyOwn, LPCTSTR name = NULL, LPSECURITY_ATTRIBUTES sa = NULL) argument
98 _handle = ::CreateMutex(sa, BoolToBOOL(initiallyOwn), name);

Completed in 106 milliseconds