Home
last modified time | relevance | path

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

/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/extractortool/include/
H A Dfile_mapper.h37 bool CreateFileMapper(const std::string &fileName, bool compress,
40 bool CreateFileMapper(std::shared_ptr<ZipFileReader> fileReader, const std::string &fileName,
H A Dzip_file.h233 …std::unique_ptr<FileMapper> CreateFileMapper(const std::string &fileName, FileMapperType type) con…
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/extractortool/src/
H A Dfile_mapper.cpp43 bool FileMapper::CreateFileMapper(const std::string &fileName, bool compress, in CreateFileMapper() function in OHOS::AbilityBase::FileMapper
85 bool FileMapper::CreateFileMapper(std::shared_ptr<ZipFileReader> fileReader, const std::string &fil… in CreateFileMapper() function in OHOS::AbilityBase::FileMapper
H A Dextractor.cpp161 return zipFile_.CreateFileMapper(relativePath, FileMapperType::NORMAL_MEM); in GetData()
171 return zipFile_.CreateFileMapper(relativePath, FileMapperType::SAFE_ABC); in GetSafeData()
177 return zipFile_.CreateFileMapper(relativePath, FileMapperType::SHARED_MMAP); in GetMmapData()
H A Dzip_file.cpp1030 std::unique_ptr<FileMapper> ZipFile::CreateFileMapper(const std::string &fileName, FileMapperType t… in CreateFileMapper() function in OHOS::AbilityBase::ZipFile
1051 result = fileMapper->CreateFileMapper(zipFileReader_, fileName, offset, length, compress); in CreateFileMapper()
1053 …result = fileMapper->CreateFileMapper(fileName, compress, zipFileReader_->GetFd(), offset, length,… in CreateFileMapper()
/ohos5.0/docs/zh-cn/application-dev/faqs/
H A Dfaqs-compiler-runtime.md55 | CreateFileMapper, mmap failed, errno ERROR. fileName: FILENAME | 使用mmap函数映射安全内存映射失败,ERROR表示错误信息,F…
/ohos5.0/docs/en/application-dev/faqs/
H A Dfaqs-compiler-runtime.md55 | CreateFileMapper, mmap failed, errno ERROR. fileName: FILENAME | Failed to map the secure memory …
/ohos5.0/base/web/webview/test/unittest/ohos_adapter/ohos_resource_adapter_test/
H A Dohos_resource_adapter_test.cpp185 fileMap->CreateFileMapper(fileReader, hapPath, 0, hapPath.size(), true);
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/runtime/
H A Djs_worker.cpp301 …auto result = fileMapper->CreateFileMapper(resolvedPath, false, fd, 0, statbuf.st_size, FileMapper… in GetSafeData()