Lines Matching refs:whenMap_
131 tmpWhenMap.insert(whenMap_.begin(), whenMap_.end()); in Push()
132 whenMap_.swap(tmpWhenMap); in Push()
134 whenMap_.insert({task->GetUptime(), task}); in Push()
136 if (task == whenMap_.begin()->second) { in Push()
148 while (!whenMap_.empty() && now < whenMap_.begin()->first && !isExit_) { in Pull()
149 uint64_t diff = whenMap_.begin()->first - now; in Pull()
157 if (whenMap_.empty()) { in Pull()
165 return dequeFunc_(queueId_, now, whenMap_, &pulledTaskCount_); in Pull()
171 int nonIdleNum = std::count_if(whenMap_.cbegin(), whenMap_.cend(), in IsIdle()
184 DumpUnexecutedTaskInfo(tag, whenMap_, oss); in Dump()
191 return std::count_if(whenMap_.begin(), whenMap_.end(), [=](const auto& pair) { in DumpSize()