Searched defs:jobs (Results 1 - 25 of 28) 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.cc490 void Printer::OnPrintJobsAvailable(const std::vector<Job>& jobs) { argument
493 VLOG(0) << "Available printjobs: " << jobs.size();
494 if (jobs.empty()) {
501 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.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_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 Dprint_system_cups.cc137 int GetJobs(cups_job_t** jobs, const GURL& url,
298 // jobs for this printer and check their status. If printer has no
299 // outstanding jobs, OnJobChanged() will do nothing.
626 cups_job_t* jobs = NULL; local
627 int num_jobs = GetJobs(&jobs, server_info->url, cups_encryption_,
631 VLOG(1) << "CP_CUPS: Error getting jobs from CUPS server"
649 if (jobs[i].id == job_id) {
651 switch (jobs[i].state) {
668 job_details->platform_status_flags = jobs[i].state;
685 cupsFreeJobs(num_jobs, jobs);
759 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 ...
/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/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DDispatcherTest.java134 private List<Job> jobs = new ArrayList<Job>(); field in class:DispatcherTest.RecordingExecutor
137 jobs.add((Job) command);
142 for (Job job : jobs) {
149 for (Iterator<Job> i = jobs.iterator(); i.hasNext(); ) {
/external/smali/baksmali/src/main/java/org/jf/baksmali/
H A DbaksmaliOptions.java77 public int jobs = -1; field in class:baksmaliOptions
/external/chromium_org/net/url_request/
H A Durl_request_file_job_unittest.cc121 const JobList& jobs() { return jobs_; } function in class:__anon9180::JobObserverImpl
206 ASSERT_EQ(observer_.jobs().size(), 1u);
207 ASSERT_EQ(observer_.jobs().at(0)->seek_position(), range ? range->start : 0);
211 observer_.jobs().at(0)->data_chunks();
/external/chromium_org/chrome/browser/chromeos/drive/
H A Djob_scheduler_unittest.cc502 // Saturate the metadata job queue with uninteresting jobs to prevent
503 // following jobs from starting.
515 // Start jobs with different priorities.
810 // Add many jobs.
837 // The number of jobs queued so far.
848 // Add more jobs.
862 // 6 jobs in total were queued.
863 std::vector<JobInfo> jobs = scheduler_->GetJobInfoList(); local
864 EXPECT_EQ(6U, jobs.size());
867 for (size_t i = 0; i < jobs
992 const std::vector<JobInfo>& jobs = scheduler_->GetJobInfoList(); local
1042 const std::vector<JobInfo>& jobs = scheduler_->GetJobInfoList(); local
[all...]
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.
756 // Abort all USER_INITAITED jobs when not accepted.
758 std::vector<JobID> jobs; local
759 queue_[queue_type]->GetQueuedJobs(USER_INITIATED, &jobs);
760 for (size_t i = 0; i < jobs.size(); ++i) {
761 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
255 FindBitsJobIf(Predicate pred, IBackgroundCopyManager* bits_manager, std::vector<ScopedComPtr<IBackgroundCopyJob> >* jobs) argument
369 std::vector<ScopedComPtr<IBackgroundCopyJob> > jobs; local
672 std::vector<ScopedComPtr<IBackgroundCopyJob> > jobs; local
[all...]
/external/fio/
H A Dclient.h44 unsigned int jobs; member in struct:fio_client
H A Dgfio.h25 GtkWidget *jobs; member in struct:eta_widget
H A Dserver.h122 uint32_t jobs; member in struct:cmd_start_pdu
/external/chromium_org/base/test/launcher/
H A Dtest_launcher.cc350 // --test-launcher-jobs flag.
651 int jobs = -1; local
653 switches::kTestLauncherJobs), &jobs) ||
654 jobs < 0) {
659 parallel_jobs_ = jobs;
661 fprintf(stdout, "Using %" PRIuS " parallel jobs.\n", parallel_jobs_);
1029 // on Windows versions prior to Windows 8 (which supports nested jobs).
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dprivate_api_drive.cc509 std::vector<drive::JobInfo> jobs = job_list->GetJobInfoList(); local
513 for (size_t i = 0; i < jobs.size(); ++i) {
514 if (drive::IsActiveFileTransferJobInfo(jobs[i]))
515 path_to_id_map[jobs[i].file_path].push_back(jobs[i].job_id);
530 // Cancel all the jobs for the file.
/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/websockets/
H A Dwebsocket_job_test.cc1098 std::vector<scoped_refptr<WebSocketJob> > jobs; local
1109 jobs.push_back(job);
1112 // Close the jobs in reverse order. Otherwise, We need to make them prepared
1115 jobs.rbegin();
1116 iter != jobs.rend();

Completed in 605 milliseconds

12