Home
last modified time | relevance | path

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

/external/lzma/CPP/Common/
DC_FileIO.h22 class CFileBase
28 CFileBase(): _handle(-1) {}; in CFileBase() function
29 ~CFileBase() { Close(); } in ~CFileBase()
35 class CInFile: public CFileBase
43 class COutFile: public CFileBase
DC_FileIO.cpp16 bool CFileBase::OpenBinary(const char *name, int flags) in OpenBinary()
26 bool CFileBase::Close() in Close()
36 bool CFileBase::GetLength(UInt64 &length) const in GetLength()
45 off_t CFileBase::Seek(off_t distanceToMove, int moveMethod) const in Seek()
55 return CFileBase::OpenBinary(name, O_RDONLY); in Open()
/external/lzma/CPP/Windows/
DFileIO.cpp49 bool CFileBase::Create(CFSTR path, DWORD desiredAccess, in Create()
84 bool CFileBase::Close() throw() in Close()
94 bool CFileBase::GetPosition(UInt64 &position) const throw() in GetPosition()
99 bool CFileBase::GetLength(UInt64 &length) const throw() in GetLength()
118 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const throw() in Seek()
137 bool CFileBase::Seek(UInt64 position, UInt64 &newPosition) const throw() in Seek()
142 bool CFileBase::SeekToBegin() const throw() in SeekToBegin()
148 bool CFileBase::SeekToEnd(UInt64 &newPosition) const throw() in SeekToEnd()
375 …{ return CFileBase::Create(fileName, GENERIC_WRITE, shareMode, creationDisposition, flagsAndAttrib… in Open()
DFileIO.h68 class CFileBase
103 CFileBase(): _handle(INVALID_HANDLE_VALUE) {}; in CFileBase() function
104 ~CFileBase() { Close(); } in ~CFileBase()
121 NIO::CFileBase file; in GetFileInformation()
144 class CInFile: public CFileBase
194 class COutFile: public CFileBase