Home | History | Annotate | Download | only in logd

Lines Matching full:worst

364 // pruning for worst UID.
453 // the worst offender by logging source. Thus the logs slowly loose content
458 // The first loop performs blacklisting and worst offender pruning. Falling
459 // through when there are no notable worst offenders and have not hit the
460 // region lock preventing further worst offender pruning. This loop also looks
543 // prune by worst offenders; by blacklist, UID, and by PID of system UID
546 // recalculate the worst offender on every batched pass
547 uid_t worst = (uid_t) -1;
565 worst = sorted[0]->getKey();
574 if ((worst == AID_SYSTEM) && mPrune.worstPidOfSystemEnabled()) {
577 worst, (pid_t)0, 2, id, worst);
587 // skip if we have neither worst nor naughty filters
588 if ((worst == (uid_t) -1) && !hasBlacklist) {
600 if (!gc && (worst != (uid_t) -1)) {
601 { // begin scope for uid worst found iterator
602 LogBufferIteratorMap::iterator found = mLastWorstUid[id].find(worst);
610 // begin scope for pid worst found iterator
673 if (element->getUid() == worst) {
696 if ((!gc && !worstPid && (element->getUid() == worst))
705 if ((element->getUid() != worst)
737 if ((!gc && !worstPid) || (mLastWorstUid[id].find(worst)
739 mLastWorstUid[id][worst] = it;