Home
last modified time | relevance | path

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

/external/lzma/CPP/Windows/
DSynchronization.h30 _object = ::CreateEvent(sa, BoolToBOOL(manualReset), BoolToBOOL(initiallyOwn), name);
37 _object = ::OpenEvent(desiredAccess, BoolToBOOL(inheritHandle), name); in Open()
98 _handle = ::CreateMutex(sa, BoolToBOOL(initiallyOwn), name);
106 _handle = ::OpenMutex(desiredAccess, BoolToBOOL(inheritHandle), name); in Open()
DFileFind.cpp363 _handle = ::FindFirstChangeNotification(pathName, BoolToBOOL(watchSubtree), notifyFilter); in FindFirst()
369 _handle = ::FindFirstChangeNotificationW(longPath, BoolToBOOL(watchSubtree), notifyFilter); in FindFirst()
380 _handle = ::FindFirstChangeNotificationW(pathName, BoolToBOOL(watchSubtree), notifyFilter); in FindFirst()
386 _handle = ::FindFirstChangeNotificationW(longPath, BoolToBOOL(watchSubtree), notifyFilter); in FindFirst()
DDefs.h11 inline BOOL BoolToBOOL(bool v) { return (v ? TRUE: FALSE); } in BoolToBOOL() function