Searched refs:Job (Results 1 - 14 of 14) sorted by relevance

/freebsd-12-stable/contrib/bmake/
H A Dmeta.h43 struct Job; /* not defined yet */
47 void meta_job_start(struct Job *, GNode *);
48 void meta_job_child(struct Job *);
49 void meta_job_parent(struct Job *, pid_t);
50 int meta_job_fd(struct Job *);
51 int meta_job_event(struct Job *);
52 void meta_job_error(struct Job *, GNode *, int, int);
53 void meta_job_output(struct Job *, char *, const char *);
55 int meta_job_finish(struct Job *);
H A Dtrace.h47 void Trace_Log(TrEvent, Job *);
H A Djob.h116 * Job Table definitions.
145 typedef struct Job {
154 #define JOB_ST_FREE 0 /* Job is available */
155 #define JOB_ST_SETUP 1 /* Job is allocated but otherwise invalid */
156 #define JOB_ST_RUNNING 3 /* Job is running, pid valid */
157 #define JOB_ST_FINISHED 4 /* Job is done (ie after SIGCHILD) */
178 } Job;
144 typedef struct Job { struct
177 } Job; typedef in typeref:struct:Job
H A Dtrace.c90 Trace_Log(TrEvent event, Job *job)
H A Djob.c226 #define JOB_RUNNING 0 /* Job is running */
335 STATIC Job *job_table; /* The structures that describe them */
336 STATIC Job *job_table_end; /* job_table + maxJobs */
346 static Job **jobfds = NULL;
348 static void watchfd(Job *);
349 static void clearfd(Job *);
350 static int readyfd(Job *);
355 static Job tokenWaitJob; /* token wait pseudo-job */
357 static Job childExitJob; /* child exit pseudo-job */
372 static Job *JobFindPi
[all...]
H A Dmeta.c670 meta_job_start(Job *job, GNode *gn)
700 meta_job_child(Job *job)
725 meta_job_parent(Job *job, pid_t pid)
742 meta_job_fd(Job *job)
760 meta_job_event(Job *job)
778 meta_job_error(Job *job, GNode *gn, int flags, int status)
808 meta_job_output(Job *job, char *cp, const char *nl)
872 meta_job_finish(Job *job)
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerFork.cpp134 auto Job = new FuzzJob; local
145 Job->DftTimeInSeconds = duration_cast<seconds>(Time2 - Time1).count();
148 Job->SeedListPath =
150 WriteToFile(Seeds, Job->SeedListPath);
151 Cmd.addFlag("seed_inputs", "@" + Job->SeedListPath);
153 Job->LogPath = DirPlusFile(TempDir, std::to_string(JobId) + ".log");
154 Job->CorpusDir = DirPlusFile(TempDir, "C" + std::to_string(JobId));
155 Job->FeaturesDir = DirPlusFile(TempDir, "F" + std::to_string(JobId));
156 Job->CFPath = DirPlusFile(TempDir, std::to_string(JobId) + ".merge");
157 Job
180 RunOneMergeJob(FuzzJob *Job) argument
256 Push(FuzzJob *Job) argument
268 auto Job = Qu.front(); local
[all...]
/freebsd-12-stable/share/examples/printing/
H A Dmake-ps-header64 [ (Job:) (Host:) (Date:) ] {
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DTool.h26 class Job;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/
H A DCompilation.cpp14 #include "clang/Driver/Job.h"
229 for (const auto &Job : Jobs) {
230 if (!InputsOk(Job, FailingCommands))
233 if (int Res = ExecuteCommand(Job, FailingCommand)) {
H A DJob.cpp1 //===- Job.cpp - Command to Execute ---------------------------------------===//
9 #include "clang/Driver/Job.h"
494 for (const auto &Job : *this)
495 Job.Print(OS, Terminator, Quote, CrashInfo);
H A DDriver.cpp53 #include "clang/Driver/Job.h"
1474 for (auto &Job : C.getJobs())
1475 setUpResponseFiles(C, Job);
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp11382 struct Job {
11387 Job() = default;
11388 Job(Job &&) = default;
11398 SmallVector<Job, 16> Queue;
11468 Queue.back().Kind = Job::AnyExprKind;
11627 Job &job = Queue.back();
11630 case Job::AnyExprKind: {
11633 job.Kind = Job::BinOpKind;
11644 case Job
[all...]
/freebsd-12-stable/lib/clang/libclang/
H A DMakefile288 SRCS_MIN+= Driver/Job.cpp

Completed in 240 milliseconds