Searched refs:memMap_ (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/src/executor/memory/parse/ |
H A D | parse_smaps_info.cpp | 126 memMap_.insert(pair<string, string>("Name", group)); in SetMapByNameLine() 137 memMap_.insert(pair<string, string>("Start", startVal)); in SetMapByNameLine() 138 memMap_.insert(pair<string, string>("End", endVal)); in SetMapByNameLine() 139 memMap_.insert(pair<string, string>("Perm", datas.at(1))); in SetMapByNameLine() 167 memMap_.insert(pair<string, string>(type, to_string(value))); in ShowSmapsData() 171 if (!memMap_.empty()) { in ShowSmapsData() 172 vectMap.push_back(memMap_); in ShowSmapsData() 173 memMap_.clear(); in ShowSmapsData() 185 if (!memMap_.empty()) { in ShowSmapsData() 186 vectMap.push_back(memMap_); in ShowSmapsData() [all …]
|
/ohos5.0/base/update/updater/services/package/pkg_manager/ |
H A D | pkg_stream.cpp | 200 if (memMap_ == nullptr) { in ~MemoryMapStream() 205 ReleaseMemory(memMap_, memSize_); in ~MemoryMapStream() 211 if (memMap_ == nullptr) { in Read() 226 data.buffer = memMap_ + start; in Read() 228 if (memcpy_s(data.buffer, needRead, memMap_ + start, readLen) != EOK) { in Read() 238 if (memMap_ == nullptr) { in Write() 253 int32_t ret = memcpy_s(memMap_ + currOffset_, memSize_ - currOffset_, data.buffer, size); in Write()
|
H A D | pkg_stream.h | 120 …treamType = PkgStreamType_MemoryMap) : PkgStreamImpl(pkgManager, fileName), memMap_(buffer.buffer), 146 msync(static_cast<void *>(memMap_), memSize_, MS_ASYNC); in Flush() 154 buffer.buffer = memMap_; in GetBuffer() 160 uint8_t *memMap_;
|
/ohos5.0/base/update/updater/services/diffpatch/diff/ |
H A D | update_diff.cpp | 62 int32_t ret = PatchMapFile(packageName, memMap_); in Parse() 68 PkgBuffer buffer {memMap_.memory, memMap_.length}; in Parse()
|
H A D | update_diff.h | 45 MemMapInfo memMap_ {};
|
/ohos5.0/base/hiviewdfx/hidumper/test/unittest/common/ |
H A D | hidumper_memory_test.cpp | 93 parseSmapsInfo->memMap_.clear(); 98 parseSmapsInfo->memMap_.clear(); 100 ASSERT_TRUE(parseSmapsInfo->memMap_.size() == 1);
|
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/include/executor/memory/parse/ |
H A D | parse_smaps_info.h | 39 std::map<std::string, std::string> memMap_; variable
|