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

  /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_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...]
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...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar 
org.eclipse.ecf_3.1.0.v20100529-0735.jar 
org.eclipse.equinox.p2.operations_2.0.0.v20100510.jar 
org.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jar 
org.mortbay.jetty.util_6.1.23.v201004211559.jar 
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /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);
  /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);
  /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));
  /development/ide/emacs/
android-common.el 40 (defcustom android-compilation-jobs 2
41 "Number of jobs used to do a compilation (-j option of make)."
  /external/chromium_org/chrome/browser/chromeos/drive/
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...]
job_scheduler.cc 29 // But currently multiplied by 2 to ensure upload related jobs retried for a
715 // Abort all USER_INITAITED jobs when not accepted.
717 std::vector<JobID> jobs; local
718 queue_[queue_type]->GetQueuedJobs(USER_INITIATED, &jobs);
719 for (size_t i = 0; i < jobs.size(); ++i) {
720 JobEntry* job = job_map_.Lookup(jobs[i]);
    [all...]
  /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/chromeos/extensions/file_manager/
private_api_drive.cc 345 std::vector<drive::JobInfo> jobs = job_list->GetJobInfoList(); local
349 for (size_t i = 0; i < jobs.size(); ++i) {
350 if (drive::IsActiveFileTransferJobInfo(jobs[i]))
351 path_to_id_map[jobs[i].file_path].push_back(jobs[i].job_id);
369 // Cancel all the jobs for the file.
  /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...]
  /external/chromium/net/socket/
client_socket_pool_base.h 138 // Timer to abort jobs that take too long.
276 return group_map_.find(group_name)->second->jobs().size();
392 const std::set<ConnectJob*>& jobs() const { return jobs_; } function in class:net::internal::ClientSocketPoolBaseHelper::Group
564 // TODO(vandebo) Remove when backup jobs move to TransportClientSocketPool
  /external/chromium_org/net/socket/
client_socket_pool_base.h 127 // Timer to abort jobs that take too long.
269 return group_map_.find(group_name)->second->jobs().size();
397 const std::set<ConnectJob*>& jobs() const { return jobs_; } function in class:net::internal::ClientSocketPoolBaseHelper::Group
415 // Since jobs use late binding to requests, which ConnectJobs have or have
583 // TODO(vandebo) Remove when backup jobs move to TransportClientSocketPool
  /external/chromium_org/net/websockets/
websocket_job_unittest.cc 979 std::vector<scoped_refptr<WebSocketJob> > jobs; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintViewPart.java 34 import org.eclipse.core.runtime.jobs.IJobChangeEvent;
35 import org.eclipse.core.runtime.jobs.IJobChangeListener;
36 import org.eclipse.core.runtime.jobs.Job;
180 // If there are currently running jobs, listen for them such that we can update the
469 Job[] jobs = LintJob.getCurrentJobs(); local
470 if (jobs.length > 0) {
  /prebuilts/tools/common/netbeans-visual/
org-openide-util.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 611 milliseconds