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

1 2 3 4 5 6 7 8 910

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.jobs_3.5.300.v20130429-1813.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.jobs_3.5.300.v20130429-1813.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.jobs_3.7.0.v20150330-2103.jar 
  /external/smali/smali/src/main/java/org/jf/smali/
SmaliOptions.java 38 public int jobs = Runtime.getRuntime().availableProcessors(); field in class:SmaliOptions
  /external/avahi/avahi-core/
probe-sched.c 49 AVAHI_LLIST_FIELDS(AvahiProbeJob, jobs);
56 AVAHI_LLIST_HEAD(AvahiProbeJob, jobs);
77 AVAHI_LLIST_PREPEND(AvahiProbeJob, jobs, s->history, pj);
79 AVAHI_LLIST_PREPEND(AvahiProbeJob, jobs, s->jobs, pj);
91 AVAHI_LLIST_REMOVE(AvahiProbeJob, jobs, s->history, pj);
93 AVAHI_LLIST_REMOVE(AvahiProbeJob, jobs, s->jobs, pj);
121 AVAHI_LLIST_REMOVE(AvahiProbeJob, jobs, s->jobs, pj)
    [all...]
query-sched.c 50 /* Jobs are stored in a simple linked list. It might turn out in
58 AVAHI_LLIST_FIELDS(AvahiQueryJob, jobs);
74 AVAHI_LLIST_HEAD(AvahiQueryJob, jobs);
97 AVAHI_LLIST_PREPEND(AvahiQueryJob, jobs, s->history, qj);
99 AVAHI_LLIST_PREPEND(AvahiQueryJob, jobs, s->jobs, qj);
112 AVAHI_LLIST_REMOVE(AvahiQueryJob, jobs, s->history, qj);
114 AVAHI_LLIST_REMOVE(AvahiQueryJob, jobs, s->jobs, qj);
142 AVAHI_LLIST_REMOVE(AvahiQueryJob, jobs, s->jobs, qj)
    [all...]
response-sched.c 65 AVAHI_LLIST_FIELDS(AvahiResponseJob, jobs);
72 AVAHI_LLIST_HEAD(AvahiResponseJob, jobs);
95 AVAHI_LLIST_PREPEND(AvahiResponseJob, jobs, s->jobs, rj);
97 AVAHI_LLIST_PREPEND(AvahiResponseJob, jobs, s->history, rj);
99 AVAHI_LLIST_PREPEND(AvahiResponseJob, jobs, s->suppressed, rj);
112 AVAHI_LLIST_REMOVE(AvahiResponseJob, jobs, s->jobs, rj);
114 AVAHI_LLIST_REMOVE(AvahiResponseJob, jobs, s->history, rj);
116 AVAHI_LLIST_REMOVE(AvahiResponseJob, jobs, s->suppressed, rj)
    [all...]
  /prebuilts/go/darwin-x86/test/bench/shootout/
fannkuch-parallel.go 142 jobs []Job
148 func NewFanner(jobs []Job, workers []*Kucher) *Fanner {
150 jobs: jobs, workers: workers,
164 if f.jobind < len(f.jobs) {
165 msg.who.in <- f.jobs[f.jobind]
167 } else if f.jobsdone == len(f.jobs) {
194 jobs := make([]Job, njobs)
201 jobs[jobsind] = Job{base, firstN}
205 jobs[jobsind] = Job{swapped(base, i, j), i
    [all...]
  /prebuilts/go/linux-x86/test/bench/shootout/
fannkuch-parallel.go 142 jobs []Job
148 func NewFanner(jobs []Job, workers []*Kucher) *Fanner {
150 jobs: jobs, workers: workers,
164 if f.jobind < len(f.jobs) {
165 msg.who.in <- f.jobs[f.jobind]
167 } else if f.jobsdone == len(f.jobs) {
194 jobs := make([]Job, njobs)
201 jobs[jobsind] = Job{base, firstN}
205 jobs[jobsind] = Job{swapped(base, i, j), i
    [all...]
  /frameworks/base/services/core/java/com/android/server/job/
JobStore.java 56 * Maintains the master list of jobs that the job scheduler is tracking. These jobs are compared by
58 * Also handles read/write of persisted jobs.
96 * @return A freshly initialized job store object, with no loaded jobs.
116 mJobsFile = new AtomicFile(new File(jobDir, "jobs.xml"));
179 * @param userHandle User for whom we are querying the list of jobs.
180 * @return A list of all the jobs scheduled by the provided user. Never null.
204 * Iterate over the set of all jobs, invoking the supplied functor on each. This is for
231 * Every time the state changes we write all the jobs in one swath, instead of trying to
240 Slog.v(TAG, "Writing jobs to disk.")
444 List<JobStatus> jobs; local
490 final List<JobStatus> jobs = new ArrayList<JobStatus>(); local
783 ArraySet<JobStatus> jobs = mJobs.get(uid); local
795 ArraySet<JobStatus> jobs = mJobs.get(i); local
806 ArraySet<JobStatus> jobs = mJobs.get(uid); local
816 ArraySet<JobStatus> jobs = mJobs.get(uid); local
827 ArraySet<JobStatus> jobs = mJobs.get(uid); local
832 ArraySet<JobStatus> jobs = mJobs.get(uid); local
848 ArraySet<JobStatus> jobs = mJobs.valueAt(i); local
877 ArraySet<JobStatus> jobs = mJobs.get(uid); local
891 ArraySet<JobStatus> jobs = mJobs.valueAt(uidIndex); local
899 ArraySet<JobStatus> jobs = mJobs.get(uid); local
    [all...]
  /external/libdrm/tests/exynos/
exynos_fimg2d_event.c 96 * We need to wait until all G2D jobs are finished, otherwise we
103 static void wait_all_jobs(struct g2d_job* jobs, unsigned num_jobs)
108 while (jobs[i].busy)
114 static struct g2d_job* free_job(struct g2d_job* jobs, unsigned num_jobs)
119 if (jobs[i].busy == 0)
120 return &jobs[i];
129 struct g2d_job *jobs = calloc(num_jobs, sizeof(struct g2d_job)); local
135 jobs[i].id = i;
143 j = free_job(jobs, num_jobs);
182 wait_all_jobs(jobs, num_jobs)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/content/
MediaContentJob.java 63 List<JobInfo> jobs = js.getAllPendingJobs(); local
64 if (jobs == null) {
67 for (int i=0; i<jobs.size(); i++) {
68 if (jobs.get(i).getId() == JobIds.MEDIA_CONTENT_JOB) {
PhotosContentJob.java 97 List<JobInfo> jobs = js.getAllPendingJobs(); local
98 if (jobs == null) {
101 for (int i=0; i<jobs.size(); i++) {
102 if (jobs.get(i).getId() == JobIds.PHOTOS_CONTENT_JOB) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
Engine.java 30 private final Map<Key, EngineJob> jobs; field in class:Engine
63 Map<Key, EngineJob> jobs, EngineKeyFactory keyFactory,
79 if (jobs == null) {
80 jobs = new HashMap<Key, EngineJob>();
82 this.jobs = jobs;
177 EngineJob current = jobs.get(key);
190 jobs.put(key, engineJob);
237 jobs.remove(key);
242 EngineJob current = jobs.get(key)
    [all...]
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/services/
FileOperationServiceTest.java 96 mJobFactory.jobs.get(0).fail(ALPHA_DOC);
139 mJobFactory.jobs.get(0).fail(ALPHA_DOC);
151 mJobFactory.jobs.get(0).fail(ALPHA_DOC);
152 mJobFactory.jobs.get(1).fail(GAMMA_DOC);
187 final List<TestJob> jobs = new ArrayList<>(); field in class:FileOperationServiceTest.TestJobFactory
190 for (TestJob job : jobs) {
196 assertEquals(expected, jobs.size());
208 jobs.add(job);
  /external/autotest/client/tests/kvm/deps/
whql_submission_15.cs 171 // (this must be done because jobs cannot be scheduled for machines in the
198 // Get requested jobs regex
199 Console.WriteLine("Jobs to run:");
280 // Find jobs that match the requested pattern
281 Console.WriteLine("Scheduling jobs:");
282 List<IJob> jobs = new List<IJob>();
295 jobs.Add(j);
298 if (jobs.Count == 0)
300 Console.WriteLine("Error: no submission jobs match pattern '{0}'", jobRegex);
304 // Create a schedule, add jobs to it and run i
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
HierarchyViewerPluginDirector.java 28 import org.eclipse.core.runtime.jobs.ISchedulingRule;
29 import org.eclipse.core.runtime.jobs.Job;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
baksmaliOptions.java 84 public int jobs = Runtime.getRuntime().availableProcessors(); field in class:baksmaliOptions
  /external/v8/build/
gdb-add-index 27 # Cleanup temp directory and ensure all child jobs are dead-dead.
31 local jobs=$(jobs -p)
32 if [ -n "$jobs" ]; then
33 echo -n "Killing outstanding index jobs..."
34 kill -KILL $(jobs -p)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseClasspathContainerInitializer.java 29 import org.eclipse.core.runtime.jobs.Job;
75 // build jobs are run after other interactive jobs
97 // build jobs are run after other interactive jobs
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/
MonitorStartup.java 25 import org.eclipse.core.runtime.jobs.Job;
  /external/libxml2/example/
gjobread.c 2 * gjobread.c : a small test program for gnome jobs XML format
171 * A pool of Gnome Jobs
175 jobPtr jobs[500]; /* using dynamic alloc is left as an exercise */ member in struct:gjob
238 /* First level we expect just Jobs */
248 if ((xmlStrcmp(cur->name, (const xmlChar *) "Jobs")) || (cur->ns != ns)) {
249 fprintf(stderr,"document of the wrong type, was '%s', Jobs expected",
268 ret->jobs[ret->nbJobs++] = curjob;
284 printf("%d Jobs registered\n", cur->nbJobs);
285 for (i = 0; i < cur->nbJobs; i++) printJob(cur->jobs[i]);
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/static/
status.js 146 resultFunc(response.jobs, response.cursor);
306 //////// Running jobs overview.
307 function initJobOverview(jobs, cursor) {
312 if (!jobs || (jobs && jobs.length == 0)) {
321 $.each(jobs, function(index, job) {
386 //////// Launching jobs.
  /external/fio/
client.h 49 unsigned int jobs; member in struct:fio_client

Completed in 1495 milliseconds

1 2 3 4 5 6 7 8 910