Home
last modified time | relevance | path

Searched refs:pruned (Results 1 – 3 of 3) sorted by relevance

/system/logging/logd/
DLogStatistics.cpp507 std::string pruned = ""; in format() local
525 pruned = android::base::StringPrintf("%zu", dropped); in format()
550 ssize_t spaces = EntryBase::PRUNED_LEN - 2 - pruned.length() - change.length(); in format()
551 if ((spaces <= 0) && pruned.length()) { in format()
557 pruned = change + pruned; in format()
561 std::string output = formatLine(name, size, pruned); in format()
612 std::string pruned = ""; in format() local
615 pruned = android::base::StringPrintf("%zu", dropped); in format()
618 return formatLine(name, size, pruned); in format()
635 std::string pruned = ""; in format() local
[all …]
DREADME.property69 matching the rule should be pruned with higher priority otherwise they're pruned with lower
DLogStatistics.h209 const std::string& pruned) { in formatLine() argument
210 ssize_t drop_len = std::max(pruned.length() + 1, PRUNED_LEN); in formatLine()
215 (int)drop_len, pruned.c_str()); in formatLine()