Home
last modified time | relevance | path

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

/frameworks/base/services/core/jni/
Dcom_android_server_utils_AnrTimer.cpp262 std::set<Timer> running_; member in android::__anoncbc99b2b0111::AnrTimerService
649 running_.insert(e); in insert()
651 maxRunning_ = std::max(maxRunning_, running_.size()); in insert()
661 auto found = running_.find(key); in remove()
662 if (found != running_.end()) running_.erase(found); in remove()
663 if (running_.empty()) drained_++; in remove()
670 for (auto i = running_.begin(); i != running_.end(); ) { in remove()
672 i = running_.erase(i); in remove()
687 return running_.size(); in running()
700 return running_.empty() ? NOTIMER : running_.cbegin()->id; in headTimerId()
[all …]