Home
last modified time | relevance | path

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

/external/v8/src/compiler-dispatcher/
Dcompiler-dispatcher.cc307 pending_background_jobs_.erase(job); in WaitForJobIfRunningOnBackground()
315 DCHECK(pending_background_jobs_.find(job) == pending_background_jobs_.end()); in WaitForJobIfRunningOnBackground()
351 pending_background_jobs_.erase(job); in FinishAllNow()
386 DCHECK(pending_background_jobs_.empty()); in AbortAll()
396 pending_background_jobs_.clear(); in AbortAll()
459 pending_background_jobs_.clear(); in MemoryPressureNotification()
507 pending_background_jobs_.insert(job); in ConsiderJobForBackgroundProcessing()
517 if (pending_background_jobs_.empty()) return; in ScheduleMoreWorkerTasksIfNeeded()
532 if (!pending_background_jobs_.empty()) { in DoBackgroundWork()
533 auto it = pending_background_jobs_.begin(); in DoBackgroundWork()
[all …]
Dcompiler-dispatcher.h190 std::unordered_set<CompilerDispatcherJob*> pending_background_jobs_; variable