Home
last modified time | relevance | path

Searched refs:dropped_count (Results 1 – 7 of 7) sorted by relevance

/system/core/logd/
DLogBufferElement.cpp114 .dropped_count = dropped_count(), in ToLogStatisticsElement()
232 type, dropped_count(), (dropped_count() > 1) ? "s" : ""); in PopulateDroppedMessage()
263 type, dropped_count(), (dropped_count() > 1) ? "s" : ""); in PopulateDroppedMessage()
DChattyLogBuffer.cpp123 if (duplicate_elements_[log_id]->dropped_count() > 0) { in LogInternal()
164 uint16_t dropped_count = duplicate_elements_[log_id]->dropped_count(); in LogInternal() local
165 if (dropped_count == std::numeric_limits<uint16_t>::max()) { in LogInternal()
167 dropped_count = 0; in LogInternal()
172 current_last.SetDropped(dropped_count + 1); in LogInternal()
246 uint16_t moreDropped = found->dropped_count(); in coalesce()
268 if (mapElement->dropped_count() >= EXPIRE_THRESHOLD && in clear()
455 uint16_t dropped = element.dropped_count(); in Prune()
587 if (check_low_priority && !element.dropped_count() && prune_->IsLowPriority(&element)) { in Prune()
DLogStatistics.cpp143 if (element.dropped_count) { in Add()
197 if (!element.dropped_count) { in Add()
213 if (element.dropped_count) { in Subtract()
246 if (!element.dropped_count) { in Subtract()
254 CHECK_EQ(element.dropped_count, 0U); in Drop()
291 CHECK_GT(element.dropped_count, 0U); in Erase()
403 if (*worst_sizes > threshold && *worst_sizes > (10 * max_entries[0]->dropped_count())) { in WorstTwoWithThreshold()
513 totalDropped += it->second.dropped_count(); in format()
523 size_t dropped = dropped_count(); in format()
583 if (entry->dropped_count()) { in format()
[all …]
DLogBufferElement.h58 uint16_t dropped_count() const { return dropped_ ? dropped_count_ : 0; } in dropped_count() function
DSerializedLogEntry.h60 .dropped_count = 0, in ToLogStatisticsElement()
DLogStatistics.h58 uint16_t dropped_count; member
232 : EntryBase(element), dropped_(element.dropped_count) {} in EntryBaseDropped()
234 size_t dropped_count() const { return dropped_; } in dropped_count() function
237 dropped_ += element.dropped_count; in Add()
241 dropped_ -= element.dropped_count; in Subtract()
DSimpleLogBuffer.cpp189 if (element.dropped_count() != 0) { in FlushTo()
200 (element.dropped_count() && !same_tid) ? 0 : element.tid(); in FlushTo()