Home
last modified time | relevance | path

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

/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/cache/
Dapp_event_cache.cpp64 blocks_.clear(); // delete blocks in Close()
75 if (blocks_.find(name) != blocks_.end()) { in CreateBlock()
84 blocks_[name] = std::make_shared<AppEventBlock>(store_, name); in CreateBlock()
93 if (blocks_.find(name) == blocks_.end()) { in DestroyBlock()
102 blocks_.erase(name); in DestroyBlock()
109 return blocks_.find(name) == blocks_.end() ? nullptr : blocks_[name]; in GetBlock()
120 for (auto& block : blocks_) { in GetBlocksStat()
/base/update/updater/services/applypatch/
Dblock_set.cpp67 blocks_.push_back(std::move(blockPair)); in PushBack()
74 blocks_.clear(); in ClearBlocks()
112 blocks_.push_back(BlockPair { in ParserAndInsert()
122 return blocks_.begin(); in Begin()
127 return blocks_.end(); in End()
132 return blocks_.cbegin(); in CBegin()
137 return blocks_.cend(); in CEnd()
142 return blocks_.crbegin(); in CrBegin()
147 return blocks_.crend(); in CrEnd()
153 std::vector<BlockPair>::iterator it = blocks_.begin(); in ReadDataFromBlock()
[all …]
/base/hiviewdfx/faultloggerd/tools/process_dump/
Ddfx_fault_stack.cpp114 if ((blocks_.size() < MAX_FAULT_STACK_SZ) && (prevSp > minAddr)) { in CollectStackInfo()
149 if (blocks_.empty()) { in Print()
155 for (const auto& block : blocks_) { in Print()
181 blocks_.push_back(info); in CreateMemoryBlock()
Ddfx_fault_stack.h50 std::vector<MemoryBlockInfo> blocks_; variable
/base/update/updater/services/include/applypatch/
Dblock_set.h77 return blocks_[index];
103 std::vector<BlockPair> blocks_; variable
/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/cache/include/
Dapp_event_cache.h45 std::map<std::string, std::shared_ptr<AppEventBlock>> blocks_; variable