Searched refs:CFileBase (Results 1 – 4 of 4) sorted by relevance
/external/lzma/CPP/Common/ |
D | C_FileIO.h | 22 class CFileBase 28 CFileBase(): _handle(-1) {}; in CFileBase() function 29 ~CFileBase() { Close(); } in ~CFileBase() 35 class CInFile: public CFileBase 43 class COutFile: public CFileBase
|
D | C_FileIO.cpp | 16 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/ |
D | FileIO.cpp | 49 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()
|
D | FileIO.h | 68 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
|