Searched defs:jobs (Results 1 - 25 of 29) sorted by last modified time

12

/external/smali/baksmali/src/main/java/org/jf/baksmali/
H A DbaksmaliOptions.java77 public int jobs = -1; field in class:baksmaliOptions
/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/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
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.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 ...
/external/chromium_org/tools/flakiness/
H A Dis_flaky_test.py35 jobs = 2 variable in class:IsFlakyTest.mock_load_options.MockOptions
/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/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...]

Completed in 4810 milliseconds

12