Home
last modified time | relevance | path

Searched refs:tag2total (Results 1 – 2 of 2) sorted by relevance

/system/logging/logd/
DLogTags.cpp84 if (tag2total.begin() == tag2total.end()) { in RebuildFileEventLogTags()
111 for (const auto& it : tag2total) { in RebuildFileEventLogTags()
149 tag2total_const_iterator itot = tag2total.find(tag); in AddEventLogTags()
152 if (itot != tag2total.end()) update = false; in AddEventLogTags()
181 if (update && (itot != tag2total.end())) tag2total[tag] = 0; in AddEventLogTags()
494 tag2total_const_iterator itot = tag2total.find(tag); in WritePmsgEventLogTags()
495 if (itot == tag2total.end()) return; // source is a static entry in WritePmsgEventLogTags()
657 tag2total_const_iterator itot = tag2total.find(tag); in WritePersistEventLogTags()
658 if (itot != tag2total.end()) lastTotal = itot->second; in WritePersistEventLogTags()
676 tag2total[tag] = lastTotal; in WritePersistEventLogTags()
[all …]
DLogTags.h62 std::unordered_map<uint32_t, size_t> tag2total; variable