OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:accepted_priority
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/browser/chromeos/drive/
job_queue.cc
23
bool JobQueue::PopForRun(int
accepted_priority
, JobID* id) {
24
DCHECK_LT(
accepted_priority
, static_cast<int>(queue_.size()));
30
// Looks up the queue in the order of priority upto |
accepted_priority
|.
31
for (int priority = 0; priority <=
accepted_priority
; ++priority) {
job_queue.h
29
// Pops the first job which meets |
accepted_priority
| (i.e. the first job in
33
// For instance, if |
accepted_priority
| is 1, the first job with priority 0
37
bool PopForRun(int
accepted_priority
, JobID* id);
job_scheduler.cc
799
const int
accepted_priority
= GetCurrentAcceptedPriority(queue_type);
local
802
if (
accepted_priority
< USER_INITIATED) {
826
if (!queue_[queue_type]->PopForRun(
accepted_priority
, &job_id))
[
all
...]
Completed in 55 milliseconds