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