HomeSort by relevance Sort by last modified time
    Searched refs:BOOLToBool (Results 1 - 11 of 11) sorted by null

  /external/lzma/CPP/Windows/
Defs.h 10 inline bool BOOLToBool(BOOL v) { return (v != FALSE); }
11 inline BOOL BoolToBOOL(bool v) { return (v ? TRUE: FALSE); }
Thread.h 30 bool Terminate(DWORD exitCode) { return BOOLToBool(::TerminateThread(thread, exitCode)); }
32 bool SetPriority(int priority) { return BOOLToBool(::SetThreadPriority(thread, priority)); }
FileDir.cpp 117 res = BOOLToBool(::SetFileTime(hDir, cTime, aTime, mTime));
130 return BOOLToBool(::SetFileAttributesW(longPath, fileAttributes));
142 return BOOLToBool(::RemoveDirectoryW(longPath));
166 return BOOLToBool(::MoveFileW(d1, d2));
181 return BOOLToBool(::SetFileAttributesW(longPath, fileAttributes));
196 return BOOLToBool(::RemoveDirectoryW(longPath));
210 return BOOLToBool(::MoveFileW(d1, d2));
225 return BOOLToBool(::CreateDirectoryW(longPath, NULL));
243 return BOOLToBool(::CreateDirectoryW(longPath, NULL));
380 return BOOLToBool(::DeleteFileW(longPath));
    [all...]
FileIO.cpp 329 bool res = BOOLToBool(::ReadFile(_handle, data, size, &processedLoc, NULL));
389 { return BOOLToBool(::SetFileTime(_handle, cTime, aTime, mTime)); }
398 bool res = BOOLToBool(::WriteFile(_handle, data, size, &processedLoc, NULL));
422 bool COutFile::SetEndOfFile() { return BOOLToBool(::SetEndOfFile(_handle)); }
PropVariantConversions.cpp 52 if (!BOOLToBool(FileTimeToSystemTime(&ft, &st)))
FileFind.h 148 bool FindNext() { return BOOLToBool(::FindNextChangeNotification(_handle)); }
FileIO.h 71 return BOOLToBool(::DeviceIoControl(_handle, controlCode, inBuffer, inSize,
Time.cpp 22 return BOOLToBool(::DosDateTimeToFileTime((UInt16)(dosTime >> 16), (UInt16)(dosTime & 0xFFFF), &ft));
FileDir.h 63 { return BOOLToBool(::SetCurrentDirectory(path)); }
FileFind.cpp 163 bool result = BOOLToBool(::FindNextFile(_handle, &fd));
363 _handle = ::FindFirstChangeNotification(pathName, BoolToBOOL(watchSubtree), notifyFilter);
369 _handle = ::FindFirstChangeNotificationW(longPath, BoolToBOOL(watchSubtree), notifyFilter);
380 _handle = ::FindFirstChangeNotificationW(pathName, BoolToBOOL(watchSubtree), notifyFilter);
386 _handle = ::FindFirstChangeNotificationW(longPath, BoolToBOOL(watchSubtree), notifyFilter);
  /external/lzma/CPP/7zip/UI/Common/
Update.cpp 615 bool RestoreDirectory() { return BOOLToBool(NFile::NDirectory::MySetCurrentDirectory(_path)); }

Completed in 97 milliseconds