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

/freebsd-13-stable/contrib/bmake/
H A Dmeta.h41 struct Job;
46 void meta_job_start(struct Job *, GNode *);
47 void meta_job_child(struct Job *);
48 void meta_job_parent(struct Job *, pid_t);
49 int meta_job_fd(struct Job *);
50 int meta_job_event(struct Job *);
51 void meta_job_error(struct Job *, GNode *, Boolean, int);
52 void meta_job_output(struct Job *, char *, const char *);
54 int meta_job_finish(struct Job *);
H A Dtrace.h50 void Trace_Log(TrEvent, Job *);
H A Djob.h121 JOB_ST_FREE = 0, /* Job is available */
122 JOB_ST_SET_UP = 1, /* Job is allocated but otherwise invalid */
124 JOB_ST_RUNNING = 3, /* Job is running, pid valid */
125 JOB_ST_FINISHED = 4 /* Job is done (ie after SIGCHILD) */
129 * A Job manages the shell commands that are run to create a single target.
141 typedef struct Job { struct
181 } Job; typedef in typeref:struct:Job
207 void Job_FlagsToString(const Job *, char *, size_t);
H A Dtrace.c82 Trace_Log(TrEvent event, Job *job)
H A Djob.c295 JOB_RUNNING, /* Job is running */
442 static Job *job_table; /* The structures that describe them */
443 static Job *job_table_end; /* job_table + maxJobs */
453 static Job **jobByFdIndex = NULL;
455 static void watchfd(Job *);
456 static void clearfd(Job *);
457 static Boolean readyfd(Job *);
460 static Job tokenWaitJob; /* token wait pseudo-job */
462 static Job childExitJob; /* child exit pseudo-job */
473 static void JobDoOutput(Job *, Boolea
[all...]
H A Dmeta.c669 meta_job_start(Job *job, GNode *gn)
699 meta_job_child(Job *job)
724 meta_job_parent(Job *job, pid_t pid)
741 meta_job_fd(Job *job)
759 meta_job_event(Job *job)
777 meta_job_error(Job *job, GNode *gn, Boolean ignerr, int status)
804 meta_job_output(Job *job, char *cp, const char *nl)
872 meta_job_finish(Job *job)
/freebsd-13-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-13-stable/share/examples/printing/
H A Dmake-ps-header64 [ (Job:) (Host:) (Date:) ] {
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Driver/
H A DTool.h25 class Job;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/
H A DCompilation.cpp14 #include "clang/Driver/Job.h"
242 for (const auto &Job : Jobs) {
243 if (!InputsOk(Job, FailingCommands))
246 if (int Res = ExecuteCommand(Job, FailingCommand)) {
H A DJob.cpp1 //===- Job.cpp - Command to Execute ---------------------------------------===//
9 #include "clang/Driver/Job.h"
481 for (const auto &Job : *this)
482 Job.Print(OS, Terminator, Quote, CrashInfo);
H A DDriver.cpp54 #include "clang/Driver/Job.h"
1503 for (auto &Job : C.getJobs())
1504 setUpResponseFiles(C, Job);
3568 // Check if this Linker Job should emit a static library.
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dopt-jobs-no-action.mk60 # not handled by the Job module but by the Compat module, see the
H A DMakefile477 ${:D Job separators on their own line are ok. } \
/freebsd-13-stable/usr.bin/bmake/unit-tests/
H A DMakefile481 ${:D Job separators on their own line are ok. } \
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp11723 struct Job {
11728 Job() = default;
11729 Job(Job &&) = default;
11739 SmallVector<Job, 16> Queue;
11809 Queue.back().Kind = Job::AnyExprKind;
11968 Job &job = Queue.back();
11971 case Job::AnyExprKind: {
11974 job.Kind = Job::BinOpKind;
11985 case Job
[all...]
/freebsd-13-stable/lib/clang/libclang/
H A DMakefile293 SRCS_MIN+= Driver/Job.cpp

Completed in 142 milliseconds