HomeSort by relevance Sort by last modified time
    Searched refs:jobs (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/chromium_org/chrome/service/cloud_print/
printer_job_queue_handler_unittest.cc 22 " \"jobs\" : ["
69 std::vector<JobDetails> jobs; local
71 job_queue_handler.GetJobsFromQueue(json_data_, &jobs);
73 ASSERT_EQ((size_t)3, jobs.size());
75 EXPECT_EQ(std::string("__testjob1"), jobs[0].job_id_);
76 EXPECT_EQ(std::string("test1"), jobs[0].job_title_);
78 jobs[0].print_ticket_url_);
80 jobs[0].print_data_url_);
86 actual_tags.insert(jobs[0].tags_.begin(), jobs[0].tags_.end())
103 std::vector<JobDetails> jobs; local
132 std::vector<JobDetails> jobs; local
162 std::vector<JobDetails> jobs; local
    [all...]
printer_job_queue_handler.cc 102 std::vector<JobDetails>* jobs) {
105 jobs->clear();
123 jobs->push_back(job_details_current);
132 jobs->insert(jobs->end(), jobs_with_timeouts.begin(),
printer_job_queue_handler.h 63 // jobs will be filled with details of all jobs in the queue, sorted by time
64 // until they are ready to print, lowest to highest. Jobs that are ready to
67 std::vector<JobDetails>* jobs);
print_system_cups.cc 142 int GetJobs(cups_job_t** jobs, const GURL& url,
303 // jobs for this printer and check their status. If printer has no
304 // outstanding jobs, OnJobChanged() will do nothing.
623 cups_job_t* jobs = NULL; local
624 int num_jobs = GetJobs(&jobs, server_info->url, cups_encryption_,
628 VLOG(1) << "CP_CUPS: Error getting jobs from CUPS server"
646 if (jobs[i].id == job_id) {
648 switch (jobs[i].state) {
665 job_details->platform_status_flags = jobs[i].state;
682 cupsFreeJobs(num_jobs, jobs);
    [all...]
printer_job_handler.cc 70 VLOG(1) << "CP_CONNECTOR: Checking for jobs"
133 // Mark the job fetch as failed and check if other jobs can be printed
256 std::vector<JobDetails> jobs; local
257 job_queue_handler_.GetJobsFromQueue(json_data, &jobs);
258 if (!jobs.empty()) {
259 if (jobs[0].time_remaining_ == base::TimeDelta()) {
261 job_details_ = jobs[0];
274 jobs[0].time_remaining_);
280 // If no jobs are available, go to the Stop state.
393 // We need to fetch any pending jobs for this printe
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar 
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
Dispatcher.java 50 List<Job> jobs = enqueuedJobs.remove(tag); local
51 if (jobs == null) return;
52 for (Job job : jobs) {
58 List<Job> jobs = enqueuedJobs.get(job.request.tag()); local
59 if (jobs != null) jobs.remove(job);
  /external/chromium/chrome/browser/sync/glue/
ui_model_worker_unittest.cc 78 base::WaitableEvent** jobs,
80 : syncer_thread_(syncer_thread), worker_(worker), jobs_(jobs),
88 // wait until all outstanding jobs are done to simulate what happens in
167 base::WaitableEvent* jobs[] = { &v_ran }; local
176 new FakeSyncapiShutdownTask(syncer_thread(), bmw(), jobs, 1));
205 base::WaitableEvent* jobs[] = { &fox1_ran, &fox2_ran, &fox3_ran }; local
216 new FakeSyncapiShutdownTask(syncer_thread(), bmw(), jobs, 3));
  /external/chromium_org/chrome/browser/chromeos/drive/
job_queue.h 16 // Priority queue for managing jobs in JobScheduler.
39 // Gets queued jobs with the given priority.
40 void GetQueuedJobs(int priority, std::vector<JobID>* jobs) const;
43 // of running parallel jobs and makes room for other jobs to be popped.
49 // Gets the total number of jobs in the queue.
job_queue.cc 26 // Too many jobs are running already.
42 void JobQueue::GetQueuedJobs(int priority, std::vector<JobID>* jobs) const {
45 jobs->assign(queue_[priority].begin(), queue_[priority].end());
job_scheduler_unittest.cc 429 // Saturate the metadata job queue with uninteresting jobs to prevent
430 // following jobs from starting.
441 // Start jobs with different priorities.
733 // Add many jobs.
757 // The number of jobs queued so far.
768 // Add more jobs.
780 // 6 jobs in total were queued.
781 std::vector<JobInfo> jobs = scheduler_->GetJobInfoList(); local
782 EXPECT_EQ(6U, jobs.size());
785 for (size_t i = 0; i < jobs.size(); ++i)
    [all...]
  /external/chromium_org/cloud_print/gcp20/prototype/
cloud_print_response_parser.cc 174 if (!json_success) { // Let's suppose we have no jobs to proceed.
179 base::ListValue* jobs = NULL; local
180 if (!response_dictionary->GetList("jobs", &jobs)) {
181 *error_description = "Cannot parse jobs list.";
185 std::vector<Job> job_list(jobs->GetSize());
188 jobs->GetDictionary(idx, &job);
cloud_print_requester.h 74 const std::vector<cloud_print_response_parser::Job>& jobs) = 0;
  /external/chromium_org/sandbox/win/sandbox_poc/pocdll/
invasive.cc 141 int jobs = 0; local
152 jobs++;
163 fprintf(output, "[GRANTED] Created %d mutexes, %d jobs and %d events for "
164 "a total of %d objects out of 3 000 000\r\n", mutexes, jobs,
165 events, mutexes + jobs + events);
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
HierarchyViewerPluginDirector.java 28 import org.eclipse.core.runtime.jobs.ISchedulingRule;
29 import org.eclipse.core.runtime.jobs.Job;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEGaussianBlur.cpp 175 int jobs = parallelJobs.numberOfJobs(); local
176 if (jobs > 1) {
177 // Split the job into "blockHeight"-sized jobs but there a few jobs that need to be slightly larger since
178 // blockHeight * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
179 const int blockHeight = paintSize.height() / jobs;
180 const int jobsWithExtra = paintSize.height() % jobs;
183 for (int job = 0; job < jobs; job++) {
189 int endY = job == jobs - 1 ? currentY : currentY + extraHeight;
211 for (int job = 1; job < jobs; job++)
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
timeline_view.css 53 #timeline-view-dns-jobs {
  /system/core/sh/
Android.mk 15 jobs.c \
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorStartup.java 25 import org.eclipse.core.runtime.jobs.Job;
  /external/chromium/net/socket/
client_socket_pool_base.cc 189 // Clean up any idle sockets and pending connect jobs. Assert that we have no
476 if (group->jobs().size() && ReachedMaxSocketsLimit()) {
477 RemoveConnectJob(*group->jobs().begin(), group);
521 if (i < group.jobs().size()) {
523 for (ConnectJobSet::const_iterator job_it = group.jobs().begin();
524 job_it != group.jobs().end(); ++job_it) {
581 std::set<ConnectJob*>::const_iterator job = group->jobs().begin();
582 for (job = group->jobs().begin(); job != group->jobs().end(); job++) {
867 DCHECK(ContainsKey(group->jobs(), job))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/common/
CommonXmlDelegate.java 27 import org.eclipse.core.runtime.jobs.Job;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseClasspathContainerInitializer.java 29 import org.eclipse.core.runtime.jobs.Job;
81 // build jobs are run after other interactive jobs
112 // build jobs are run after other interactive jobs
  /external/chromium_org/net/socket/
client_socket_pool_base.cc 188 // Clean up any idle sockets and pending connect jobs. Assert that we have no
521 if (group->jobs().size() > group->pending_requests().size() &&
523 RemoveConnectJob(*group->jobs().begin(), group);
563 // Search the first group.jobs().size() |pending_requests| for |handle|.
566 size_t connect_jobs = group.jobs().size();
574 // group.jobs().size() pending requests.
576 for (ConnectJobSet::const_iterator job_it = group.jobs().begin();
577 job_it != group.jobs().end(); ++job_it) {
629 std::set<ConnectJob*>::const_iterator job = group->jobs().begin();
630 for (job = group->jobs().begin(); job != group->jobs().end(); job++)
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
socketsview.js 9 * - For each pool with allocated sockets or connect jobs, shows all its
  /external/chromium/net/base/
host_resolver_impl.cc 626 // This boolean is used for histogramming the duration of jobs used to
747 // the limits on how many jobs are allowed to be used for this category of
885 // Maximum number of concurrent jobs allowed to be started for requests
889 // The current number of running jobs that were started for requests
935 // Cancel the outstanding jobs. Those jobs may contain several attached
991 // outstanding jobs map.
1437 JobMap jobs; local
1446 JobMap jobs; local
    [all...]

Completed in 687 milliseconds

1 2 3 4