Home
last modified time | relevance | path

Searched refs:CFileBase (Results 1 – 4 of 4) sorted by relevance

/external/lzma/CPP/Common/
DC_FileIO.h16 class CFileBase
22 CFileBase(): _handle(-1) {}; in CFileBase() function
23 ~CFileBase() { Close(); } in ~CFileBase()
29 class CInFile: public CFileBase
37 class COutFile: public CFileBase
DC_FileIO.cpp12 bool CFileBase::OpenBinary(const char *name, int flags) in OpenBinary()
22 bool CFileBase::Close() in Close()
32 bool CFileBase::GetLength(UInt64 &length) const in GetLength()
41 off_t CFileBase::Seek(off_t distanceToMove, int moveMethod) const in Seek()
51 return CFileBase::OpenBinary(name, O_RDONLY); in Open()
/external/lzma/CPP/Windows/
DFileIO.cpp104 CFileBase::~CFileBase() { Close(); } in ~CFileBase()
106 bool CFileBase::Create(LPCTSTR fileName, DWORD desiredAccess, in Create()
131 bool CFileBase::Create(LPCWSTR fileName, DWORD desiredAccess, in Create()
159 bool CFileBase::Close() in Close()
169 bool CFileBase::GetPosition(UInt64 &position) const in GetPosition()
174 bool CFileBase::GetLength(UInt64 &length) const in GetLength()
193 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const in Seek()
213 bool CFileBase::Seek(UInt64 position, UInt64 &newPosition) in Seek()
218 bool CFileBase::SeekToBegin() in SeekToBegin()
224 bool CFileBase::SeekToEnd(UInt64 &newPosition) in SeekToEnd()
[all …]
DFileIO.h26 class CFileBase
45 CFileBase(): _handle(INVALID_HANDLE_VALUE) {}; in CFileBase() function
46 ~CFileBase();
65 class CInFile: public CFileBase
113 class COutFile: public CFileBase