Home
last modified time | relevance | path

Searched refs:prune_ (Results 1 – 5 of 5) sorted by relevance

/system/core/logd/
DCommandListener.h38 PruneList* prune_; variable
52 PruneList* prune() const { return parent_->prune_; } \
DLogBufferTest.h70 log_buffer_.reset(new ChattyLogBuffer(&reader_list_, &tags_, &prune_, &stats_)); in SetUp()
89 PruneList prune_; variable
DChattyLogBuffer.cpp45 : SimpleLogBuffer(reader_list, tags, stats), prune_(prune) {} in ChattyLogBuffer()
378 bool check_high_priority = id != LOG_ID_SECURITY && prune_->HasHighPriorityPruneRules(); in Prune()
386 if (worstUidEnabledForLogid(id) && prune_->worst_uid_enabled()) { in Prune()
396 if (worst == AID_SYSTEM && prune_->worst_pid_of_system_enabled()) { in Prune()
471 if (check_high_priority && prune_->IsHighPriority(&element)) { in Prune()
564 if (!kick || !prune_->worst_uid_enabled()) { in Prune()
572 id != LOG_ID_SECURITY && prune_->HasLowPriorityPruneRules() && !clearAll; in Prune()
587 if (check_low_priority && !element.dropped_count() && prune_->IsLowPriority(&element)) { in Prune()
DChattyLogBuffer.h64 PruneList* prune_; variable
DCommandListener.cpp45 : FrameworkListener(getLogSocket()), buf_(buf), tags_(tags), prune_(prune), stats_(stats) { in CommandListener()