Home
last modified time | relevance | path

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

/system/core/logd/
DLogTags.cpp83 if (tag2total.begin() == tag2total.end()) { in RebuildFileEventLogTags()
110 for (const auto& it : tag2total) { in RebuildFileEventLogTags()
148 tag2total_const_iterator itot = tag2total.find(tag); in AddEventLogTags()
151 if (itot != tag2total.end()) update = false; in AddEventLogTags()
180 if (update && (itot != tag2total.end())) tag2total[tag] = 0; in AddEventLogTags()
493 tag2total_const_iterator itot = tag2total.find(tag); in WritePmsgEventLogTags()
494 if (itot == tag2total.end()) return; // source is a static entry in WritePmsgEventLogTags()
656 tag2total_const_iterator itot = tag2total.find(tag); in WritePersistEventLogTags()
657 if (itot != tag2total.end()) lastTotal = itot->second; in WritePersistEventLogTags()
675 tag2total[tag] = lastTotal; in WritePersistEventLogTags()
[all …]
DLogTags.h62 std::unordered_map<uint32_t, size_t> tag2total; variable