OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CFileBase
(Results
1 - 4
of
4
) sorted by null
/external/lzma/CPP/Common/
C_FileIO.h
22
class
CFileBase
28
CFileBase
(): _handle(-1) {};
29
~
CFileBase
() { Close(); }
35
class CInFile: public
CFileBase
43
class COutFile: public
CFileBase
C_FileIO.cpp
16
bool
CFileBase
::OpenBinary(const char *name, int flags)
26
bool
CFileBase
::Close()
36
bool
CFileBase
::GetLength(UInt64 &length) const
45
off_t
CFileBase
::Seek(off_t distanceToMove, int moveMethod) const
55
return
CFileBase
::OpenBinary(name, O_RDONLY);
/external/lzma/CPP/Windows/
FileIO.cpp
49
bool
CFileBase
::Create(CFSTR path, DWORD desiredAccess,
84
bool
CFileBase
::Close() throw()
94
bool
CFileBase
::GetPosition(UInt64 &position) const throw()
99
bool
CFileBase
::GetLength(UInt64 &length) const throw()
118
bool
CFileBase
::Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const throw()
137
bool
CFileBase
::Seek(UInt64 position, UInt64 &newPosition) const throw()
142
bool
CFileBase
::SeekToBegin() const throw()
148
bool
CFileBase
::SeekToEnd(UInt64 &newPosition) const throw()
375
{ return
CFileBase
::Create(fileName, GENERIC_WRITE, shareMode, creationDisposition, flagsAndAttributes); }
FileIO.h
62
class
CFileBase
97
CFileBase
(): _handle(INVALID_HANDLE_VALUE) {};
98
~
CFileBase
() { Close(); }
115
NIO::
CFileBase
file;
138
class CInFile: public
CFileBase
183
class COutFile: public
CFileBase
Completed in 74 milliseconds