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

  /external/lzma/CPP/Common/
C_FileIO.h 16 class CFileBase
22 CFileBase(): _handle(-1) {};
23 ~CFileBase() { Close(); }
29 class CInFile: public CFileBase
37 class COutFile: public CFileBase
C_FileIO.cpp 12 bool CFileBase::OpenBinary(const char *name, int flags)
22 bool CFileBase::Close()
32 bool CFileBase::GetLength(UInt64 &length) const
41 off_t CFileBase::Seek(off_t distanceToMove, int moveMethod) const
51 return CFileBase::OpenBinary(name, O_RDONLY);
  /external/lzma/CPP/Windows/
FileIO.cpp 104 CFileBase::~CFileBase() { Close(); }
106 bool CFileBase::Create(LPCTSTR fileName, DWORD desiredAccess,
131 bool CFileBase::Create(LPCWSTR fileName, DWORD desiredAccess,
159 bool CFileBase::Close()
169 bool CFileBase::GetPosition(UInt64 &position) const
174 bool CFileBase::GetLength(UInt64 &length) const
193 bool CFileBase::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const
213 bool CFileBase::Seek(UInt64 position, UInt64 &newPosition)
218 bool CFileBase::SeekToBegin()
    [all...]
FileIO.h 26 class CFileBase
45 CFileBase(): _handle(INVALID_HANDLE_VALUE) {};
46 ~CFileBase();
65 class CInFile: public CFileBase
113 class COutFile: public CFileBase

Completed in 154 milliseconds