Lines Matching defs:priority
27 * platform implementation should preempt such tasks if higher priority tasks
38 * User blocking tasks are highest priority tasks that block the execution
211 * this Job's priority to be at least as high as the calling thread's
212 * priority.
242 * Returns true if job priority can be changed.
247 * Update this Job's priority.
1026 * high-priority on a worker thread.
1034 // priority pool.
1039 * Schedules a task to be invoked with low-priority on a worker thread.
1047 // priority pool.
1080 * the scheduler lacks context to be fair to multiple same-priority requests
1081 * and/or ability to request lower priority work to yield when high priority
1119 TaskPriority priority, std::unique_ptr<JobTask> job_task) {
1120 auto handle = CreateJob(priority, std::move(job_task));
1133 * TaskPriority priority, std::unique_ptr<JobTask> job_task) override {
1135 * this, priority, std::move(job_task), NumberOfWorkerThreads());
1143 TaskPriority priority, std::unique_ptr<JobTask> job_task) {
1144 return CreateJobImpl(priority, std::move(job_task),
1230 TaskPriority priority, std::unique_ptr<JobTask> job_task,
1236 * Schedules a task with |priority| to be invoked on a worker thread.
1239 virtual void PostTaskOnWorkerThreadImpl(TaskPriority priority,
1244 * Schedules a task with |priority| to be invoked on a worker thread after
1249 TaskPriority priority, std::unique_ptr<Task> task,