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

1 2 3 4 5 6 7 8 91011

  /external/clang/include/clang/Driver/
Job.h 82 /// JobList - A sequence of jobs to perform.
91 list_type Jobs;
98 void addJob(Job *J) { Jobs.push_back(J); }
103 const list_type &getJobs() const { return Jobs; }
105 size_type size() const { return Jobs.size(); }
106 iterator begin() { return Jobs.begin(); }
107 const_iterator begin() const { return Jobs.begin(); }
108 iterator end() { return Jobs.end(); }
109 const_iterator end() const { return Jobs.end(); }
Compilation.h 45 /// The root list of jobs.
46 JobList Jobs;
78 JobList &getJobs() { return Jobs; }
79 const JobList &getJobs() const { return Jobs; }
81 void addCommand(Command *C) { Jobs.addJob(C); }
  /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
  /system/core/sh/
jobs.h 1 /* $NetBSD: jobs.h,v 1.19 2003/11/27 21:16:14 dsl Exp $ */
34 * @(#)jobs.h 8.2 (Berkeley) 5/4/95
45 #define SHOW_PGID 0x01 /* only show pgid - for jobs -p */
48 #define SHOW_CHANGED 0x08 /* only jobs whose state has changed */
79 #if JOBS
86 extern int job_warning; /* user was warned about stopped jobs */
104 #if ! JOBS
builtins.c 26 { "jobs", jobscmd },
jobs.c 1 /* $NetBSD: jobs.c,v 1.62 2003/12/18 00:56:05 christos Exp $ */
38 static char sccsid[] = "@(#)jobs.c 8.5 (Berkeley) 5/4/95";
40 __RCSID("$NetBSD: jobs.c,v 1.62 2003/12/18 00:56:05 christos Exp $");
62 #if JOBS
75 #include "jobs.h"
89 static struct job *jobtab; /* array of jobs */
93 #if JOBS
245 #if JOBS
254 #if JOBS
313 put after all stopped jobs. *
    [all...]
  /external/chromium/net/http/
http_stream_factory_impl.h 90 // These jobs correspond to jobs orphaned by Requests and now owned by
93 // ~HttpStreamFactoryImpl, it is possible for some jobs to still exist in this
94 // set. Leftover jobs will be deleted when the factory is destroyed.
97 // These jobs correspond to preconnect requests and have no associated Request
98 // object. They're owned by HttpStreamFactoryImpl. Leftover jobs will be
  /external/qemu/distrib/
build-kernel.sh 33 # Default number of parallel jobs during the build: cores * 2
34 JOBS=$(( $BUILD_NUM_CPUS * 2 ))
86 echo " -j<number> launch <number> parallel build jobs [$JOBS]"
174 JOBS=$OPTION_JOBS
176 echo "Auto-config: -j$JOBS"
183 make -j$JOBS # build it
  /external/chromium/chrome/browser/printing/
print_job_manager.h 32 // Stops all printing jobs. If wait_for_finish is true, tries to give jobs
72 // Current print jobs that are active.
  /external/llvm/utils/
llvmbuild 99 # The user may control parallelism via the --jobs and --threads
100 # switches. --jobs tells llvmbuild the maximum total number of builds
104 # than --jobs, --threads workers will be launched and each one will
106 # will invoke GNU make with -j (--jobs / --threads) to use up the
177 parser.add_option("--jobs", "-j", default=8, type="int",
178 help=("The number of simultaneous build jobs "
300 def __init__(self, work_queue, jobs,
305 self.jobs = jobs
517 llvm=dict(debug=["-j" + str(self.jobs)],
    [all...]
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 67 const driver::JobList &Jobs = C->getJobs();
68 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) {
76 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin());
  /external/chromium/chrome/browser/policy/
device_management_backend_impl.h 20 // Implements the actual backend interface. It creates device management jobs
74 // Keeps track of the jobs currently in flight.
  /external/clang/lib/Driver/
Compilation.cpp 97 const JobList *Jobs = cast<JobList>(&J);
99 it = Jobs->begin(), ie = Jobs->end(); it != ie; ++it)
200 const JobList *Jobs = cast<JobList>(&J);
202 it = Jobs->begin(), ie = Jobs->end(); it != ie; ++it)
210 // Free actions and jobs.
212 Jobs.clear();
Job.cpp 34 DeleteContainerPointers(Jobs);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintRunner.java 31 import org.eclipse.core.runtime.jobs.IJobManager;
32 import org.eclipse.core.runtime.jobs.Job;
113 /** Cancels the current lint jobs, if any */
115 // Cancel any current running jobs first
117 Job[] jobs = jobManager.find(CheckFileJob.FAMILY_RUN_LINT); local
118 for (Job job : jobs) {
  /external/mksh/src/
jobs.c 1 /* $OpenBSD: jobs.c,v 1.38 2009/12/12 04:28:44 deraadt Exp $ */
25 __RCSID("$MirOS: src/bin/mksh/jobs.c,v 1.69 2010/07/04 17:33:54 tg Exp $");
58 #define PJ_PAST_STOPPED 1 /* just past any stopped jobs */
64 #define JF_XXCOM 0x008 /* set for $(command) jobs */
87 int32_t age; /* number of jobs started */
90 struct termios ttystate;/* saved tty state for stopped jobs */
91 pid_t saved_ttypgrp; /* saved tty process group for stopped jobs */
121 static int32_t njobs; /* # of jobs started */
207 /* kill stopped, and possibly running, jobs */
367 /* link process into jobs list *
    [all...]
  /external/chromium/chrome/browser/sync/glue/
ui_model_worker_unittest.cc 78 base::WaitableEvent** jobs,
80 : syncer_thread_(syncer_thread), worker_(worker), jobs_(jobs),
88 // wait until all outstanding jobs are done to simulate what happens in
167 base::WaitableEvent* jobs[] = { &v_ran }; local
176 new FakeSyncapiShutdownTask(syncer_thread(), bmw(), jobs, 1));
205 base::WaitableEvent* jobs[] = { &fox1_ran, &fox2_ran, &fox3_ran }; local
216 new FakeSyncapiShutdownTask(syncer_thread(), bmw(), jobs, 3));
  /prebuilt/android-arm/kernel/
rebuild.sh 117 JOBS="`cat /proc/cpuinfo | grep -e "^processor" | wc -l`"
151 --jobs=*)
152 JOBS="$optarg"
181 echo " --jobs=<count> Perform <count> parallel builds [$JOBS]"
287 MAKE_FLAGS="-j$JOBS"
  /external/chromium/base/synchronization/
cancellation_flag.h 15 // CancellationFlag allows one thread to cancel jobs executed on some worker
  /external/chromium/net/url_request/
url_request_test_job.h 28 // Optionally, you can also construct test jobs to return a headers and data
31 // When a job is created, it gets put on a queue of pending test jobs. To
32 // process jobs on this queue, use ProcessOnePendingMessage, which will process
36 // Optionally, you can also construct test jobs that advance automatically
  /external/clang/examples/clang-interpreter/
main.cpp 96 const driver::JobList &Jobs = C->getJobs();
97 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) {
105 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin());
  /external/protobuf/
generate_descriptor_proto.sh 11 # -j4 to run 4 jobs simultaneously.
  /ndk/sources/host-tools/make-3.81/tests/scripts/features/
parallelism 11 start up to four jobs simultaneously. In this case, since the
85 # parallel without -k and two jobs die in a row, but not too close to each
86 # other, then make will quit without waiting for the rest of the jobs to die.
102 #MAKE#: *** Waiting for unfinished jobs....
  /ndk/sources/host-tools/make-3.81/tests/scripts/options/
general 16 $answer = "$make_name: Parallel jobs (-j) are not supported on this platform.\n$make_name: Resetting to single job (-j1) mode.\n1foo\n";
  /external/chromium/net/base/
host_resolver_impl.h 102 // |max_outstanding_jobs| -- How many concurrent jobs are allowed for this
147 // Adds a job to outstanding jobs list.
153 // Removes |job| from the outstanding jobs list.
220 // Cancels all jobs.
223 // Aborts all in progress jobs (but might start new ones).
235 // Maximum number of concurrent jobs allowed, across all pools.
239 // how many outstanding jobs the pool already has, and its constraints.

Completed in 1284 milliseconds

1 2 3 4 5 6 7 8 91011