Lines Matching refs:whenMap_
43 whenMap_.insert({task->GetUptime(), task});
56 whenMap_.insert({task->GetUptime(), task});
62 whenMap_.insert({task->GetUptime(), task});
63 if (task == whenMap_.begin()->second) {
76 if (!whenMap_.empty() && now >= whenMap_.begin()->first && !isExit_) {
77 return dequeFunc_(queueId_, now, whenMap_, nullptr);
82 while (!whenMap_.empty() && now < whenMap_.begin()->first && !isExit_) {
83 uint64_t diff = whenMap_.begin()->first - now;
91 if (whenMap_.empty()) {
99 return dequeFunc_(queueId_, now, whenMap_, nullptr);
107 for (auto it = whenMap_.begin(); it != whenMap_.end(); it++) {
113 whenMap_.clear();