Lines Matching refs:_handle
62 _handle = ::CreateFile(fs2fas(path), desiredAccess, shareMode, in Create()
69 _handle = ::CreateFileW(fs2us(path), desiredAccess, shareMode, in Create() local
72 if (_handle == INVALID_HANDLE_VALUE && USE_SUPER_PATH) in Create()
76 _handle = ::CreateFileW(superPath, desiredAccess, shareMode, in Create()
81 return (_handle != INVALID_HANDLE_VALUE); in Create()
86 if (_handle == INVALID_HANDLE_VALUE) in Close()
88 if (!::CloseHandle(_handle)) in Close()
90 _handle = INVALID_HANDLE_VALUE; in Close()
110 DWORD sizeLow = ::GetFileSize(_handle, &sizeHigh); in GetLength()
129 DWORD low = ::SetFilePointer(_handle, (LONG)(distanceToMove & 0xFFFFFFFF), &high, moveMethod); in Seek()
221 if (_handle == INVALID_HANDLE_VALUE || !IsDeviceFile) in CalcDeviceSize()
338 bool res = BOOLToBool(::ReadFile(_handle, data, size, &processedLoc, NULL)); in Read1()
387 { return BOOLToBool(::SetFileTime(_handle, cTime, aTime, mTime)); } in SetTime()
396 bool res = BOOLToBool(::WriteFile(_handle, data, size, &processedLoc, NULL)); in WritePart()
420 bool COutFile::SetEndOfFile() throw() { return BOOLToBool(::SetEndOfFile(_handle)); } in SetEndOfFile()