Home
last modified time | relevance | path

Searched refs:CreateFileMapper (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/extractortool/src/
Dfile_mapper.h37 bool CreateFileMapper(const std::string &fileName, bool compress,
40 bool CreateFileMapper(std::shared_ptr<ZipFileReader> fileReader, const std::string &fileName,
Dfile_mapper.cpp40 bool FileMapper::CreateFileMapper(const std::string &fileName, bool compress, in CreateFileMapper() function in panda::ecmascript::FileMapper
76 bool FileMapper::CreateFileMapper(std::shared_ptr<ZipFileReader> fileReader, const std::string &fil… in CreateFileMapper() function in panda::ecmascript::FileMapper
Dextractor.cpp139 return zipFile_.CreateFileMapper(relativePath, FileMapperType::NORMAL_MEM); in GetData()
149 return zipFile_.CreateFileMapper(relativePath, FileMapperType::SAFE_ABC); in GetSafeData()
155 return zipFile_.CreateFileMapper(relativePath, FileMapperType::SHARED_MMAP); in GetMmapData()
Dzip_file.h222 …std::unique_ptr<FileMapper> CreateFileMapper(const std::string &fileName, FileMapperType type) con…
Dzip_file.cpp634 std::unique_ptr<FileMapper> ZipFile::CreateFileMapper(const std::string &fileName, FileMapperType t… in CreateFileMapper() function in panda::ecmascript::ZipFile
652 result = fileMapper->CreateFileMapper(zipFileReader_, fileName, offset, length, compress); in CreateFileMapper()
654 …result = fileMapper->CreateFileMapper(fileName, compress, zipFileReader_->GetFd(), offset, length,… in CreateFileMapper()
/arkcompiler/ets_runtime/ecmascript/extractortool/tests/
Dzip_file_test.cpp104 …std::unique_ptr<FileMapper> CreateFileMapper(const std::string &fileName, FileMapperType type) con… in CreateFileMapper() function in panda::ecmascript::ZipFileFriend
106 return zipFile_.CreateFileMapper(fileName, type); in CreateFileMapper()