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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/docs/html/training/
best-background.jd 1 page.title=Best Practices for Background Jobs
7 <p>These classes show you how to run jobs in the background to boost your
  /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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.jobs_3.5.1.R36x_v20100824.jar 
  /external/fio/examples/
gfapi.fio 1 # Test opening a file from multiple jobs.
  /development/ndk/tests/
run-all.sh 37 JOBS=
49 JOBS="$opt"
52 --jobs=*)
53 JOBS="-j$optarg"
79 echo " -j<N> --jobs=<N> Launch parallel builds"
95 $NDK/ndk-build -B $JOBS 2>&1
100 $NDK/ndk-build -B $JOBS >> $MYLOG 2>&1
117 run $NDK/ndk-build -B $JOBS
  /frameworks/base/services/core/java/com/android/server/job/
JobSchedulerService.java 63 * Responsible for taking jobs representing work to be performed by a client app, and determining
66 * Implements logic for scheduling, and rescheduling jobs. The JobSchedulerService knows nothing
67 * about constraints, or the state of active jobs. It receives callbacks from the various
68 * controllers and completed jobs and operates accordingly.
77 /** The number of concurrent jobs we run at one time. */
81 /** Master list of jobs. */
89 * Minimum # of idle jobs that must be ready in order to force the JMS to schedule things
94 * Minimum # of charging jobs that must be ready in order to force the JMS to schedule things
99 * Minimum # of connectivity jobs that must be ready in order to force the JMS to schedule
104 * Minimum # of jobs (with no particular constraints) for which the JMS will be happy runnin
201 ArraySet<JobStatus> jobs = mJobs.getJobs(); local
359 ArraySet<JobStatus> jobs = mJobs.getJobs(); local
597 ArraySet<JobStatus> jobs = mJobs.getJobs(); local
637 ArraySet<JobStatus> jobs = mJobs.getJobs(); local
900 ArraySet<JobStatus> jobs = mJobs.getJobs(); local
    [all...]
JobStore.java 54 * Maintains the master list of jobs that the job scheduler is tracking. These jobs are compared by
56 * Also handles read/write of persisted jobs.
93 * @return A freshly initialized job store object, with no loaded jobs.
112 mJobsFile = new AtomicFile(new File(jobDir, "jobs.xml"));
183 * @param userHandle User for whom we are querying the list of jobs.
184 * @return A list of all the jobs scheduled by the provided user. Never null.
247 * Every time the state changes we write all the jobs in one swath, instead of trying to
256 Slog.v(TAG, "Writing jobs to disk.");
277 // Copy over the jobs so we can release the lock before writing
425 List<JobStatus> jobs; local
471 final List<JobStatus> jobs = new ArrayList<JobStatus>(); local
    [all...]
  /external/v8/tools/testrunner/objects/
peer.py 30 def __init__(self, address, jobs, rel_perf, pubkey):
32 self.jobs = jobs # integer: number of CPUs
43 return ("Peer at %s, jobs: %d, performance: %.2f, trust I/O: %s/%s" %
44 (self.address, self.jobs, self.relative_performance,
74 return [self.address, self.jobs, self.relative_performance]
  /frameworks/base/core/java/android/app/job/
JobScheduler.java 22 * This is an API for scheduling various types of jobs against the framework that will be executed
25 * See {@link android.app.job.JobInfo} for more description of the types of jobs that can be run
61 * {@link android.app.job.JobInfo.Builder JobInfo.Builder} for more detail on the sorts of jobs
70 * @param jobId unique identifier for this job. Obtain this value from the jobs returned by
77 * Cancel all jobs that have been registered with the JobScheduler by this package.
82 * @return a list of all the jobs registered by this package that have not yet been executed.
  /ndk/tests/build/issue64679-prctl/
build.sh 10 JOBS=1
14 JOBS=${OPT##-j}
16 --jobs=*)
17 JOBS=${OPT##--jobs=}
83 $ANDROID_NDK_ROOT/ndk-build -C "$PROJECT_DIR" -B -j$JOBS 1>/dev/null 2>&1
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 65 const driver::JobList &Jobs = C->getJobs();
66 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) {
69 Jobs.Print(OS, "; ", true);
74 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin());
  /external/llvm/lib/Fuzzer/
FuzzerFlags.def 42 FUZZER_FLAG_INT(jobs, 0, "Number of jobs to run. If jobs >= 1 we spawn"
43 " this number of jobs in separate worker processes"
46 "Number of simultaneous worker processes to run the jobs.")
  /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
  /external/llvm/utils/lit/lit/
run.py 188 def execute_tests(self, display, jobs, max_time=None,
191 execute_tests(display, jobs, [max_time])
193 Execute each of the tests in the run, using up to jobs number of
213 if jobs != 1 and use_processes and multiprocessing:
218 consumer = MultiprocessResultsConsumer(self, display, jobs)
232 provider = TestProvider(self.tests, jobs, queue_impl, canceled_flag)
249 if jobs == 1:
253 self._execute_tests_in_parallel(task_impl, provider, consumer, jobs)
264 def _execute_tests_in_parallel(self, task_impl, provider, consumer, jobs):
268 for i in range(jobs)]
    [all...]
  /external/vixl/tools/
lint.py 102 result.add_argument('--jobs', '-j', metavar='N', type=int, nargs='?',
104 help='''Runs the tests using N jobs. If the option is set
105 but no value is provided, the script will use as many jobs
166 def LintFiles(files, lint_args = CPP_LINTER_RULES, jobs = 1, verbose = False,
169 pool = multiprocessing.Pool(jobs)
204 jobs = args.jobs, verbose = args.verbose)
  /external/clang/include/clang/Driver/
Job.h 165 /// JobList - A sequence of jobs to perform.
174 list_type Jobs;
184 void addJob(std::unique_ptr<Job> J) { Jobs.push_back(std::move(J)); }
189 const list_type &getJobs() const { return Jobs; }
191 size_type size() const { return Jobs.size(); }
192 iterator begin() { return Jobs.begin(); }
193 const_iterator begin() const { return Jobs.begin(); }
194 iterator end() { return Jobs.end(); }
195 const_iterator end() const { return Jobs.end(); }
Compilation.h 51 /// The root list of jobs.
52 JobList Jobs;
94 JobList &getJobs() { return Jobs; }
95 const JobList &getJobs() const { return Jobs; }
97 void addCommand(std::unique_ptr<Command> C) { Jobs.addJob(std::move(C)); }
  /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]);
gjobs.xml 3 <gjob:Jobs>
55 </gjob:Jobs>
  /external/strace/xlat/
gen.sh 150 local jobs=0
163 : $(( jobs += 1 ))
164 if [ ${jobs} -ge ${ncpus} ]; then
165 jobs=0
  /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...]
  /hardware/intel/img/psb_video/
psb-video.spec 56 make %{?jobs:-j%jobs}
  /external/llvm/utils/
llvm-compilers-check 58 # The user may control parallelism via the --jobs and --threads
59 # switches. --jobs tells llvm-compilers-checl the maximum total
63 # those builds. If --threads is less than --jobs, --threads workers
66 # (--jobs / --threads) to use up the remaining job capacity. Once a
135 parser.add_option("--jobs", "-j", default=8, type="int",
136 help=("The number of simultaneous build jobs "
255 def __init__(self, work_queue, jobs,
260 self.jobs = jobs
405 llvm=dict(debug=["-j" + str(self.jobs)],
    [all...]
  /external/v8/tools/testrunner/server/
presence_handler.py 60 jobs = data[1]
64 response = [STARTUP_RESPONSE, self.server.daemon.jobs,
69 p = peer.Peer(self.client_address[0], jobs, relative_perf,
75 jobs = data[1]
78 p = peer.Peer(self.client_address[0], jobs, perf, pubkey_fingerprint)
117 request = [STARTUP_REQUEST, self.daemon.jobs, self.daemon.relative_perf,

Completed in 1241 milliseconds

1 2 3 4 5 6 7 8 91011>>