Searched defs:jobs (Results 1 - 25 of 29) sorted by path

12

/external/chromium_org/base/test/launcher/
H A Dtest_launcher.cc269 // on Windows versions prior to Windows 8 (which supports nested jobs).
771 int jobs = -1; local
773 switches::kTestLauncherJobs), &jobs) ||
774 jobs < 0) {
779 parallel_jobs_ = jobs;
781 // Do not run jobs in parallel by default if we are running a subset of
786 fprintf(stdout, "Using %" PRIuS " parallel jobs.\n", parallel_jobs_);
/external/chromium_org/chrome/browser/chromeos/drive/
H A Djob_scheduler.cc23 // All jobs are retried at maximum of kMaxRetryCount when they fail due to
25 // jobs. It doubles in length on each failure, upto 2^kMaxThrottleCount seconds.
29 // But currently multiplied by 2 to ensure upload related jobs retried for a
138 // Metadata jobs are cheap, so we run them concurrently. File jobs run serially.
735 // Abort all USER_INITAITED jobs when not accepted.
737 std::vector<JobID> jobs; local
738 queue_[queue_type]->GetQueuedJobs(USER_INITIATED, &jobs);
739 for (size_t i = 0; i < jobs.size(); ++i) {
740 JobEntry* job = job_map_.Lookup(jobs[
[all...]
H A Djob_scheduler_unittest.cc488 // Saturate the metadata job queue with uninteresting jobs to prevent
489 // following jobs from starting.
501 // Start jobs with different priorities.
796 // Add many jobs.
827 // The number of jobs queued so far.
838 // Add more jobs.
852 // 6 jobs in total were queued.
853 std::vector<JobInfo> jobs = scheduler_->GetJobInfoList(); local
854 EXPECT_EQ(6U, jobs.size());
857 for (size_t i = 0; i < jobs
982 const std::vector<JobInfo>& jobs = scheduler_->GetJobInfoList(); local
1032 const std::vector<JobInfo>& jobs = scheduler_->GetJobInfoList(); local
[all...]
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dprivate_api_drive.cc568 std::vector<drive::JobInfo> jobs = job_list->GetJobInfoList(); local
570 // If file_urls are empty, cancel all jobs.
572 for (size_t i = 0; i < jobs.size(); ++i) {
573 if (drive::IsActiveFileTransferJobInfo(jobs[i]))
574 job_list->CancelJob(jobs[i].job_id);
581 for (size_t i = 0; i < jobs.size(); ++i) {
582 if (drive::IsActiveFileTransferJobInfo(jobs[i]))
583 path_to_id_map[jobs[i].file_path].push_back(jobs[i].job_id);
595 // Cancel all the jobs fo
[all...]
/external/chromium_org/chrome/service/cloud_print/
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.
624 cups_job_t* jobs = NULL; local
625 int num_jobs = GetJobs(&jobs, server_info->url, cups_encryption_,
629 VLOG(1) << "CP_CUPS: Error getting jobs from CUPS server"
647 if (jobs[i].id == job_id) {
649 switch (jobs[i].state) {
666 job_details->platform_status_flags = jobs[i].state;
683 cupsFreeJobs(num_jobs, jobs);
757 GetJobs(cups_job_t** jobs, const GURL& url, http_encryption_t encryption, const char* name, int myjobs, int whichjobs) argument
[all...]
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];
336 jobs[0].time_remaining_);
342 // If no jobs are available, go to the Stop state.
473 // We need to fetch any pending jobs fo
[all...]
H A Dprinter_job_queue_handler.cc104 std::vector<JobDetails>* jobs) {
107 jobs->clear();
125 jobs->push_back(job_details_current);
134 jobs->insert(jobs->end(), jobs_with_timeouts.begin(),
102 GetJobsFromQueue( const base::DictionaryValue* json_data, std::vector<JobDetails>* jobs) argument
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...]
/external/chromium_org/cloud_print/gcp20/prototype/
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 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 Dprinter.cc491 void Printer::OnPrintJobsAvailable(const std::vector<Job>& jobs) { argument
494 VLOG(0) << "Available printjobs: " << jobs.size();
495 if (jobs.empty()) {
502 requester_->RequestPrintJob(jobs[0]);
/external/chromium_org/components/component_updater/
H A Dbackground_downloader_win.cc44 // To list the BITS jobs for a user, use the |bitsadmin| tool. The command line
91 // Second, there is a simple mechanism to detect stuck jobs, and allow the rest
93 // Last, after completing a job, irrespective of the outcome, the jobs older
100 // All jobs created by this module have a specific description so they can
111 // How long to wait for stuck jobs. Stuck jobs could be queued for too long,
121 // How often the jobs which were started but not completed for any reason
122 // are cleaned up. Reasons for jobs to be left behind include browser restarts,
123 // system restarts, etc. Also, the check to purge stale jobs only happens
125 // default policy is to cancel jobs afte
260 FindBitsJobIf(Predicate pred, IBackgroundCopyManager* bits_manager, std::vector<ScopedComPtr<IBackgroundCopyJob> >* jobs) argument
374 std::vector<ScopedComPtr<IBackgroundCopyJob> > jobs; local
676 std::vector<ScopedComPtr<IBackgroundCopyJob> > jobs; local
[all...]
/external/chromium_org/net/socket/
H A Dclient_socket_pool_base.h138 // Timer to abort jobs that take too long.
285 return group_map_.find(group_name)->second->jobs().size();
451 const std::set<ConnectJob*>& jobs() const { return jobs_; } function in class:net::internal::ClientSocketPoolBaseHelper::Group
472 // Since jobs use late binding to requests, which ConnectJobs have or have
631 // TODO(vandebo) Remove when backup jobs move to TransportClientSocketPool
/external/chromium_org/net/url_request/
H A Durl_request_file_job_unittest.cc125 const JobList& jobs() { return jobs_; } function in class:net::__anon9794::JobObserverImpl
208 ASSERT_EQ(observer_.jobs().size(), 1u);
209 ASSERT_EQ(observer_.jobs().at(0)->seek_position(), range ? range->start : 0);
213 observer_.jobs().at(0)->data_chunks();
/external/chromium_org/net/websockets/
H A Dwebsocket_job_test.cc1100 std::vector<scoped_refptr<WebSocketJob> > jobs; local
1111 jobs.push_back(job);
1114 // Close the jobs in reverse order. Otherwise, We need to make them prepared
1117 jobs.rbegin();
1118 iter != jobs.rend();
/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_org/tools/flakiness/
H A Dis_flaky_test.py35 jobs = 2 variable in class:IsFlakyTest.mock_load_options.MockOptions
/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.artifact.repository_1.1.1.R36x_v20100901.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
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.jdt.core_3.6.2.v_A76_R36x.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 ...
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/fio/
H A Dclient.h44 unsigned int jobs; member in struct:fio_client

Completed in 401 milliseconds

12