| /src/usr.bin/make/ |
| meta.h | 41 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 *) MAKE_ATTR_USE; 50 int meta_job_event(struct Job *) MAKE_ATTR_USE; 51 void meta_job_error(struct Job *, GNode *, bool, int); 52 void meta_job_output(struct Job *, const char *, size_t); 54 int meta_job_finish(struct Job *);
|
| job.h | 1 /* $NetBSD: job.h,v 1.86 2026/02/10 18:53:34 sjg Exp $ */ 34 * from: @(#)job.h 8.1 (Berkeley) 6/6/93 73 * from: @(#)job.h 8.1 (Berkeley) 6/6/93 81 typedef struct Job Job; 113 void Job_FlagsToString(const Job *, char *, size_t); 116 struct BuildMon *Job_BuildMon(Job *) MAKE_ATTR_USE; 118 GNode *Job_Node(Job *) MAKE_ATTR_USE; 119 int Job_Pid(Job *) MAKE_ATTR_USE;
|
| trace.h | 50 void Trace_Log(TrEvent, Job *);
|
| job.c | 1 /* $NetBSD: job.c,v 1.529 2026/04/06 17:13:54 rillig Exp $ */ 93 * job table is empty. 119 #include "job.h" 126 /* "@(#)job.c 8.2 (Berkeley) 3/19/94" */ 127 MAKE_RCSID("$NetBSD: job.c,v 1.529 2026/04/06 17:13:54 rillig Exp $"); 155 JOB_ST_FREE, /* Job is available */ 156 JOB_ST_SET_UP, /* Job is allocated but otherwise invalid */ 157 JOB_ST_RUNNING, /* Job is running, pid valid */ 158 JOB_ST_FINISHED /* Job is done (i.e. after SIGCHLD) */ 169 * A Job manages the shell commands that are run to create a single target 575 const Job *job; local 680 Job *job; local 794 Job *job; local 1730 Job *job; local 1960 Job *job; local 2020 Job *job; local 2036 Job *job; local 2451 Job *job; local 2529 Job *job; local [all...] |
| trace.c | 42 * Trace_Log Log an event about a particular make job. 48 #include "job.h" 61 "JOB", 84 Trace_Log(TrEvent event, Job *job) 104 if (job != NULL) { 105 GNode *gn = Job_Node(job); 108 Job_FlagsToString(job, flags, sizeof flags); 110 gn->name, Job_Pid(job), flags, type);
|
| meta.c | 47 #include "job.h" 602 BM(Job *job) 605 return job != NULL ? Job_BuildMon(job) : &Mybm; 609 * In each case below we allow for job==NULL 612 meta_job_start(Job *job, GNode *gn) 616 pbm = BM(job); 620 if (job == NULL [all...] |
| /src/bin/ksh/ |
| jobs.c | 4 * Process and job control 109 #define JP_MEDIUM 2 /* print [job-num] -/+ command */ 110 #define JP_LONG 3 /* print [job-num] -/+ pid command */ 117 /* Job.flags values */ 118 #define JF_STARTED 0x001 /* set when all processes in job are started */ 119 #define JF_WAITING 0x002 /* set if j_waitj() is waiting on job */ 131 typedef struct job Job; 132 struct job { struct 133 Job *next; /* next job in list * 134 int job; \/* job number: %n *\/ member in struct:job 1548 int len, job = 0; local [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| ExpandVectorPredication.cpp | 395 for (TransformJob Job : Worklist) { 397 switch (Job.Strategy.EVLParamStrategy) { 401 discardEVLParameter(*Job.PI); 404 if (foldEVLIntoMask(*Job.PI)) 408 Job.Strategy.EVLParamStrategy = VPLegalization::Legal; 411 switch (Job.Strategy.OpStrategy) { 417 expandPredication(*Job.PI); 421 Job.Strategy.OpStrategy = VPLegalization::Legal; 423 assert(Job.isDone() && "incomplete transformation");
|
| /src/external/apache2/llvm/dist/clang/include/clang/Driver/ |
| Tool.h | 25 class Job;
|
| /src/external/apache2/llvm/dist/clang/lib/Driver/ |
| Compilation.cpp | 14 #include "clang/Driver/Job.h" 244 // job is missing due to previous failures. 245 for (const auto &Job : Jobs) { 246 if (!InputsOk(Job, FailingCommands)) 249 if (int Res = ExecuteCommand(Job, FailingCommand)) {
|
| Job.cpp | 1 //===- Job.cpp - Command to Execute ---------------------------------------===// 9 #include "clang/Driver/Job.h" 378 // FIXME: Currently, if there're more than one job, we disable 379 // -fintegrate-cc1. If we're no longer a integrated-cc1 job, fallback to 443 for (const auto &Job : *this) 444 Job.Print(OS, Terminator, Quote, CrashInfo);
|
| Driver.cpp | 57 #include "clang/Driver/Job.h" 1360 // Save the original job command(s). 1558 for (auto &Job : C.getJobs()) 1559 setUpResponseFiles(C, Job); 3791 // Check if this Linker Job should emit a static library. 4066 // If we have more than one job, then disable integrated-cc1 for now. Do this 4351 // Check if the initial input (to the compile job or its predessor if one 4354 // -save-temps. I.e. there is no need for a separate compile job just to 4469 /// Return a string that uniquely identifies the result of a job. The bound arch 4539 // For a) and b), we just return the job generated for the dependence. Fo [all...] |
| /src/external/mit/isl/dist/interface/ |
| extract_interface.cc | 208 namespace clang { namespace driver { class Job; } } 214 static Job *command(Job *J) { return J; } 215 static Job *command(Job &J) { return &J; }
|
| /src/external/apache2/llvm/lib/libclangDriver/ |
| Makefile | 17 Job.cpp \
|
| /src/usr.bin/make/unit-tests/ |
| opt-jobs-no-action.mk | 8 # in compat.c and once in job.c. 60 # not handled by the Job module but by the Compat module, see the
|
| Makefile | 226 TESTS+= job-flags 227 TESTS+= job-output 228 TESTS+= job-output-long-lines 229 TESTS+= job-output-null 532 SED_CMDS.job-output-long-lines= \ 533 ${:D Job separators on their own line are ok. } \ 534 -e '/^--- job-[ab] ---$$/d' \ 539 ${:D The following lines should rather not occur since the job } \ 541 -e '/^aa*--- job-b ---$$/d' \ 542 -e '/^bb*--- job-a ---$$/d [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| ExprConstant.cpp | 12184 struct Job { 12189 Job() = default; 12190 Job(Job &&) = default; 12200 SmallVector<Job, 16> Queue; 12270 Queue.back().Kind = Job::AnyExprKind; 12429 Job &job = Queue.back(); 12431 switch (job.Kind) { 12432 case Job::AnyExprKind: [all...] |