Searched defs:jobs (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/cloud_print/gcp20/prototype/
H A Dprint_job_handler.h74 // Contains all unexpired jobs
75 std::map<std::string, LocalPrintJobExtended> jobs; // id -> printjob member in class:PrintJobHandler
77 // Changes job state and creates timeouts to delete old jobs from memory
80 // Moves draft to jobs
H A Dcloud_print_response_parser.cc175 if (!json_success) { // Let's suppose we have no jobs to proceed.
180 base::ListValue* jobs = NULL; local
181 if (!response_dictionary->GetList("jobs", &jobs)) {
182 *error_description = "Cannot parse jobs list.";
186 std::vector<Job> job_list(jobs->GetSize());
190 jobs->GetDictionary(idx, &job);
H A Dprinter.cc488 void Printer::OnPrintJobsAvailable(const std::vector<Job>& jobs) { argument
491 VLOG(0) << "Available printjobs: " << jobs.size();
492 if (jobs.empty()) {
499 requester_->RequestPrintJob(jobs[0]);
/external/chromium_org/chrome/service/cloud_print/
H A Dprinter_job_queue_handler_unittest.cc22 " \"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[
103 std::vector<JobDetails> jobs; local
132 std::vector<JobDetails> jobs; local
162 std::vector<JobDetails> jobs; local
[all...]
H A Dprinter_job_queue_handler.cc102 std::vector<JobDetails>* jobs) {
105 jobs->clear();
123 jobs->push_back(job_details_current);
132 jobs->insert(jobs->end(), jobs_with_timeouts.begin(),
101 GetJobsFromQueue(const DictionaryValue* json_data, std::vector<JobDetails>* jobs) argument
H A Dprinter_job_handler.cc101 VLOG(1) << "CP_CONNECTOR: Checking for jobs"
166 // Mark the job fetch as failed and check if other jobs can be printed
307 std::vector<JobDetails> jobs; local
308 job_queue_handler_.GetJobsFromQueue(json_data, &jobs);
309 if (!jobs.empty()) {
310 if (jobs[0].time_remaining_ == base::TimeDelta()) {
312 job_details_ = jobs[0];
327 jobs[0].time_remaining_);
333 // If no jobs are available, go to the Stop state.
460 // We need to fetch any pending jobs fo
[all...]
H A Dprint_system_cups.cc135 int GetJobs(cups_job_t** jobs, const GURL& url,
296 // jobs for this printer and check their status. If printer has no
297 // outstanding jobs, OnJobChanged() will do nothing.
616 cups_job_t* jobs = NULL; local
617 int num_jobs = GetJobs(&jobs, server_info->url, cups_encryption_,
621 VLOG(1) << "CP_CUPS: Error getting jobs from CUPS server"
639 if (jobs[i].id == job_id) {
641 switch (jobs[i].state) {
658 job_details->platform_status_flags = jobs[i].state;
675 cupsFreeJobs(num_jobs, jobs);
745 GetJobs(cups_job_t** jobs, const GURL& url, http_encryption_t encryption, const char* name, int myjobs, int whichjobs) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.jobs_3.5.1.R36x_v20100824.jar ... eclipse/core/ org/eclipse/core/internal/ org/eclipse/core/internal/jobs/ org/eclipse/core/internal/jobs/Counter.class Counter. ...
H A Dorg.eclipse.ecf_3.1.0.v20100529-0735.jar ... core/ org/eclipse/ecf/core/events/ org/eclipse/ecf/core/jobs/ org/eclipse/ecf/core/provider/ org/eclipse/ecf/core/security ...
H A Dorg.eclipse.equinox.p2.operations_2.0.0.v20100510.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/sandbox/win/sandbox_poc/pocdll/
H A Dinvasive.cc141 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/chromium/chrome/browser/sync/glue/
H A Dui_model_worker_unittest.cc78 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));
76 FakeSyncapiShutdownTask(base::Thread* syncer_thread, UIModelWorker* worker, base::WaitableEvent** jobs, size_t job_count) argument
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dprivate_api_drive.cc333 std::vector<drive::JobInfo> jobs = job_list->GetJobInfoList(); local
337 for (size_t i = 0; i < jobs.size(); ++i) {
338 if (drive::IsActiveFileTransferJobInfo(jobs[i]))
339 path_to_id_map[jobs[i].file_path].push_back(jobs[i].job_id);
354 // Cancel all the jobs for the file.
/external/chromium_org/chrome/browser/chromeos/drive/
H A Djob_scheduler_unittest.cc510 // Saturate the metadata job queue with uninteresting jobs to prevent
511 // following jobs from starting.
525 // Start jobs with different priorities.
829 // Add many jobs.
854 // The number of jobs queued so far.
865 // Add more jobs.
879 // 6 jobs in total were queued.
880 std::vector<JobInfo> jobs = scheduler_->GetJobInfoList(); local
881 EXPECT_EQ(6U, jobs.size());
884 for (size_t i = 0; i < jobs
1007 const std::vector<JobInfo>& jobs = scheduler_->GetJobInfoList(); local
1055 const std::vector<JobInfo>& jobs = scheduler_->GetJobInfoList(); local
[all...]
H A Djob_scheduler.cc24 // All jobs are retried at maximum of kMaxRetryCount when they fail due to
26 // jobs. It doubles in length on each failure, upto 2^kMaxThrottleCount seconds.
30 // But currently multiplied by 2 to ensure upload related jobs retried for a
136 // Metadata jobs are cheap, so we run them concurrently. File jobs run serially.
801 // Abort all USER_INITAITED jobs when not accepted.
803 std::vector<JobID> jobs; local
804 queue_[queue_type]->GetQueuedJobs(USER_INITIATED, &jobs);
805 for (size_t i = 0; i < jobs.size(); ++i) {
806 JobEntry* job = job_map_.Lookup(jobs[
[all...]
/external/chromium_org/chrome/browser/component_updater/
H A Dbackground_downloader_win.cc41 // To list the BITS jobs for a user, use the |bitsadmin| tool. The command line
88 // Second, there is a simple mechanism to detect stuck jobs, and allow the rest
90 // Last, after completing a job, irrespective of the outcome, the jobs older
97 // All jobs created by this module have a specific description so they can
108 // How long to wait for stuck jobs. Stuck jobs could be queued for too long,
118 // How often the jobs which were started but not completed for any reason
119 // are cleaned up. Reasons for jobs to be left behind include browser restarts,
120 // system restarts, etc. Also, the check to purge stale jobs only happens
122 // default policy is to cancel jobs afte
252 FindBitsJobIf(Predicate pred, IBackgroundCopyManager* bits_manager, std::vector<ScopedComPtr<IBackgroundCopyJob> >* jobs) argument
368 std::vector<ScopedComPtr<IBackgroundCopyJob> > jobs; local
673 std::vector<ScopedComPtr<IBackgroundCopyJob> > jobs; local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEGaussianBlur.cpp172 int jobs = parallelJobs.numberOfJobs(); local
173 if (jobs > 1) {
174 // Split the job into "blockHeight"-sized jobs but there a few jobs that need to be slightly larger since
175 // blockHeight * jobs < total size. These extras are handled by the remainder "jobsWithExtra".
176 const int blockHeight = paintSize.height() / jobs;
177 const int jobsWithExtra = paintSize.height() % jobs;
180 for (int job = 0; job < jobs; job++) {
186 int endY = job == jobs - 1 ? currentY : currentY + extraHeight;
208 for (int job = 1; job < jobs; jo
[all...]
/external/chromium_org/base/test/launcher/
H A Dtest_launcher.cc369 // --test-launcher-jobs flag.
688 int jobs = -1; local
690 switches::kTestLauncherJobs), &jobs) ||
691 jobs < 0) {
696 parallel_jobs_ = jobs;
698 fprintf(stdout, "Using %" PRIuS " parallel jobs.\n", parallel_jobs_);
946 // on Windows versions prior to Windows 8 (which supports nested jobs).
/external/chromium/net/socket/
H A Dclient_socket_pool_base.h138 // 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/
H A Dclient_socket_pool_base.h137 // Timer to abort jobs that take too long.
284 return group_map_.find(group_name)->second->jobs().size();
445 const std::set<ConnectJob*>& jobs() const { return jobs_; } function in class:net::internal::ClientSocketPoolBaseHelper::Group
466 // Since jobs use late binding to requests, which ConnectJobs have or have
625 // TODO(vandebo) Remove when backup jobs move to TransportClientSocketPool
/external/chromium_org/net/websockets/
H A Dwebsocket_job_test.cc980 std::vector<scoped_refptr<WebSocketJob> > jobs; local
991 jobs.push_back(job);
994 // Close the jobs in reverse order. Otherwise, We need to make them prepared
997 jobs.rbegin();
998 iter != jobs.rend();
/external/chromium/net/base/
H A Dhost_resolver_impl.cc626 // 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.
1168 // Cancel the outstanding jobs.
1437 JobMap jobs; local
1438 jobs
1446 JobMap jobs; local
[all...]

Completed in 339 milliseconds

12