Lines Matching refs:initiallyOwn
32 WRes Create(bool manualReset, bool initiallyOwn, LPCTSTR name = NULL, LPSECURITY_ATTRIBUTES sa = NULL)
34 _object = ::CreateEvent(sa, BoolToBOOL(manualReset), BoolToBOOL(initiallyOwn), name);
57 WRes Create(bool initiallyOwn = false)
59 return ManualResetEvent_Create(&_object, initiallyOwn ? 1: 0);
68 WRes CreateWithName(bool initiallyOwn, LPCTSTR name)
70 return CBaseEvent::Create(true, initiallyOwn, name);
104 WRes Create(bool initiallyOwn, LPCTSTR name = NULL, LPSECURITY_ATTRIBUTES sa = NULL)
106 _handle = ::CreateMutex(sa, BoolToBOOL(initiallyOwn), name);
293 bool manualReset, bool initiallyOwn)
297 this->_state = initiallyOwn;
322 WRes Create(CSynchro *sync, bool initiallyOwn = false) { return CBaseEvent_WFMO::Create(sync, true, initiallyOwn); }