Lines Matching defs:RandomAccessFile
27 int32_t RandomAccessFile::memoryPageSize = sysconf(_SC_PAGESIZE);
29 RandomAccessFile::RandomAccessFile()
34 RandomAccessFile::~RandomAccessFile()
41 bool RandomAccessFile::Init(const std::string& filePath)
66 int64_t RandomAccessFile::GetLength() const
71 bool RandomAccessFile::CheckLittleEndian()
81 int32_t RandomAccessFile::DoMMap(int32_t bufCapacity, int64_t offset, MmapInfo& mmapInfo)
113 int32_t RandomAccessFile::ReadFileFullyFromOffset(char buf[], int64_t offset, int64_t bufCapacity)
136 int32_t RandomAccessFile::ReadFileFullyFromOffset(ByteBuffer& buffer, int64_t offset)
155 int32_t RandomAccessFile::WriteToFile(ByteBuffer& buffer, int64_t position, int64_t length)
162 SIGNATURE_TOOLS_LOGE("RandomAccessFile ftruncate error: %s", strerror(errno));
190 bool RandomAccessFile::ReadFileFromOffsetAndDigestUpdate(const DigestParameter& digestParam,