/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerFork.cpp | 137 auto Job = new FuzzJob; in CreateNewJob() local 164 Job->DftTimeInSeconds = static_cast<int>(DftTimeInSeconds); in CreateNewJob() 167 Job->SeedListPath = in CreateNewJob() 169 WriteToFile(Seeds, Job->SeedListPath); in CreateNewJob() 170 Cmd.addFlag("seed_inputs", "@" + Job->SeedListPath); in CreateNewJob() 172 Job->LogPath = DirPlusFile(TempDir, std::to_string(JobId) + ".log"); in CreateNewJob() 173 Job->CorpusDir = DirPlusFile(TempDir, "C" + std::to_string(JobId)); in CreateNewJob() 174 Job->FeaturesDir = DirPlusFile(TempDir, "F" + std::to_string(JobId)); in CreateNewJob() 175 Job->CFPath = DirPlusFile(TempDir, std::to_string(JobId) + ".merge"); in CreateNewJob() 176 Job->JobId = JobId; in CreateNewJob() [all …]
|
/freebsd/contrib/bmake/ |
H A D | 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 *, char *, const char *); 54 int meta_job_finish(struct Job *);
|
H A D | job.c | 428 static Job *job_table; /* The structures that describe them */ 429 static Job *job_table_end; /* job_table + maxJobs */ 439 static Job **jobByFdIndex = NULL; 441 static void watchfd(Job *); 442 static void clearfd(Job *); 443 static bool readyfd(Job *); 446 static Job tokenWaitJob; /* token wait pseudo-job */ 448 static Job childExitJob; /* child exit pseudo-job */ 459 static void CollectOutput(Job *, bool); 489 Job_FlagsToString(const Job *jo in nfds_per_job() [all...] |
H A D | job.h | 138 typedef struct Job { struct 180 } Job; argument 209 void Job_FlagsToString(const Job *, char *, size_t);
|
H A D | meta.c | 646 BM(Job *job) in BM() 656 meta_job_start(Job *job, GNode *gn) in meta_job_start() 682 meta_job_child(Job *job MAKE_ATTR_UNUSED) in meta_job_child() 703 meta_job_parent(Job *job MAKE_ATTR_UNUSED, pid_t pid MAKE_ATTR_UNUSED) in meta_job_parent() 716 meta_job_fd(Job *job MAKE_ATTR_UNUSED) in meta_job_fd() 730 meta_job_event(Job *job MAKE_ATTR_UNUSED) in meta_job_event() 744 meta_job_error(Job *job, GNode *gn, bool ignerr, int status) in meta_job_error() 769 meta_job_output(Job *job, char *cp, const char *nl) in meta_job_output() 835 meta_job_finish(Job *job) in meta_job_finish()
|
H A D | trace.h | 50 void Trace_Log(TrEvent, Job *);
|
H A D | trace.c | 84 Trace_Log(TrEvent event, Job *job) in Trace_Log()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | MoveAutoInit.cpp | 207 for (auto &Job : reverse(JobList)) { in runMoveAutoInit() 208 Job.first->moveBefore(*Job.second, Job.second->getFirstInsertionPt()); in runMoveAutoInit() 209 MSSAU.moveToPlace(MSSA.getMemoryAccess(Job.first), Job.first->getParent(), in runMoveAutoInit() 204 for (auto &Job : reverse(JobList)) { runMoveAutoInit() local
|
/freebsd/contrib/tcsh/nls/german/ |
H A D | set1 | 48 46 Kein solcher Job 60 58 Argumente können Job- oder Prozeß-ID's sein 61 59 Kein aktueller Job 62 60 Kein vorhergehender Job 63 61 Kein Job entspricht dem Muster 138 136 Kein solcher Job
|
H A D | set11 | 4 2 Daher keine Job Control in dieser Shell.\n
|
H A D | set17 | 3 1 FEHLER: Warte auf Hintergrund-Job!\n
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/ |
H A D | Tooling.cpp | 97 for (const auto &Job : Jobs) in ignoreExtraCC1Commands() local 98 if (StringRef(Job.getExecutable()) == "clang-offload-bundler") in ignoreExtraCC1Commands() 146 for (const driver::Command &Job : Jobs) in getCC1Arguments() local 147 if (IsCC1Command(Job) && llvm::all_of(Job.getInputInfos(), IsSrcFile)) in getCC1Arguments() 148 CC1Jobs.push_back(&Job); in getCC1Arguments() 153 for (const driver::Command &Job : Jobs) in getCC1Arguments() local 154 if (IsCC1Command(Job)) in getCC1Arguments() 155 CC1Jobs.push_back(&Job); in getCC1Arguments()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ExpandVectorPredication.cpp | 844 for (TransformJob Job : Worklist) { in expandVectorPredication() local 846 switch (Job.Strategy.EVLParamStrategy) { in expandVectorPredication() 850 discardEVLParameter(*Job.PI); in expandVectorPredication() 853 if (foldEVLIntoMask(*Job.PI)) in expandVectorPredication() 857 Job.Strategy.EVLParamStrategy = VPLegalization::Legal; in expandVectorPredication() 860 switch (Job.Strategy.OpStrategy) { in expandVectorPredication() 866 expandPredication(*Job.PI); in expandVectorPredication() 870 Job.Strategy.OpStrategy = VPLegalization::Legal; in expandVectorPredication() 872 assert(Job.isDone() && "incomplete transformation"); in expandVectorPredication()
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ |
H A D | Compilation.cpp | 249 for (const auto &Job : Jobs) { in ExecuteJobs() local 250 if (!InputsOk(Job, FailingCommands)) in ExecuteJobs() 253 if (int Res = ExecuteCommand(Job, FailingCommand, LogOnly)) { in ExecuteJobs()
|
/freebsd/share/examples/printing/ |
H A D | make-ps-header | 64 [ (Job:) (Host:) (Date:) ] {
|
/freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | Tool.h | 25 class Job; variable
|
/freebsd/contrib/tcsh/ |
H A D | src.desc | 33 sh.proc.c: Job handling. Adds new children to the job list. 37 sh.sem.c: Job spawning (nice and time are handled here too) and I/O
|
/freebsd/sys/contrib/device-tree/Bindings/crypto/ |
H A D | fsl-sec6.txt | 5 -Job Ring Node 72 Job Ring (JR) Node
|
H A D | fsl-sec4.txt | 8 -Job Ring Node 25 2. Job Rings (HW interface between cores & SEC 4 registers). 35 Job Ring Data Path Configuration: 156 Job Ring (JR) Node
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | ASYNC_start_job.pod | 276 printf("Job was paused\n"); 279 printf("Job finished with return value %d\n", ret); 309 Job was paused 312 Job finished with return value 1
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | printer | 80 # HP Printer Job Language 81 0 string \033%-12345X@PJL HP Printer Job Language data 82 # HP Printer Job Language
|
/freebsd/sys/contrib/device-tree/Bindings/powerpc/fsl/ |
H A D | raideng.txt | 60 - fsl,liodn: Specifies the LIODN to be used for Job Ring. This
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
H A D | DependencyScanningWorker.cpp | 563 for (const driver::Command &Job : Compilation->getJobs()) { in forEachDriverJob() local 564 if (!Callback(Job)) in forEachDriverJob()
|
/freebsd/usr.sbin/services_mkdb/ |
H A D | services | 27 rje 5/tcp #Remote Job Entry 28 rje 5/udp #Remote Job Entry 134 netrjs-1 71/tcp #Remote Job Service 135 netrjs-1 71/udp #Remote Job Service 136 netrjs-2 72/tcp #Remote Job Service 137 netrjs-2 72/udp #Remote Job Service 138 netrjs-3 73/tcp #Remote Job Service 139 netrjs-3 73/udp #Remote Job Service 140 netrjs-4 74/tcp #Remote Job Service 141 netrjs-4 74/udp #Remote Job Service
|
/freebsd/sys/contrib/device-tree/src/arm64/freescale/ |
H A D | imx8mm-innocomm-wb15.dtsi | 289 /delete-node/ &sec_jr1; /* Job ring in use by OP-TEE */
|