Searched refs:Pid (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilDarwin.cpp100 pid_t Pid; local
111 ErrorCode = posix_spawn(&Pid, "/bin/sh", NULL, &SpawnAttributes,
115 pid_t SavedPid = Pid;
118 Pid = waitpid(SavedPid, &ProcessStatus, /*options=*/0);
119 } while (Pid == -1 && errno == EINTR);
120 if (Pid == -1) {
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_fdr_log_records.h38 Pid, member in class:__xray::RecordKinds
H A Dxray_fdr_controller.h99 // Also write the Pid record.
100 createMetadataRecord<MetadataRecord::RecordKinds::Pid>(
/freebsd-11-stable/usr.sbin/cron/crontab/
H A Dcrontab.c60 static PID_T Pid; variable
93 Pid = getpid();
108 log_it(RealUser, Pid, "AUTH", "crontab command not allowed");
268 log_it(RealUser, Pid, "LIST", User);
298 log_it(RealUser, Pid, "DELETE", User);
332 log_it(RealUser, Pid, "BEGIN EDIT", User);
496 log_it(RealUser, Pid, "END EDIT", User);
518 (void) snprintf(n, sizeof(n), "tmp.%d", Pid);
614 log_it(RealUser, Pid, "REPLACE", User);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp84 pid_t Pid; member in class:__anon1889::PerfJITEventListener
126 uint32_t Pid; member in struct:__anon1889::LLVMPerfJitHeader
141 uint32_t Pid; member in struct:__anon1889::LLVMPerfJitRecordCodeLoad
180 PerfJITEventListener::PerfJITEventListener() : Pid(::getpid()) {
194 FilenameBuf << JitPath << "/jit-" << Pid << ".dump"; local
221 Header.Pid = Pid;
420 rec.Pid = Pid;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc66 ProcessInfo::ProcessInfo() : Pid(0), ReturnCode(0) {}
265 PI.Pid = PID;
327 PI.Pid = child;
338 assert(PI.Pid && "invalid pid to wait on, process not started?");
341 pid_t ChildPid = PI.Pid;
361 WaitResult.Pid = waitpid(ChildPid, &status, WaitPidOptions);
362 } while (WaitUntilTerminates && WaitResult.Pid == -1 && errno == EINTR);
364 if (WaitResult.Pid != PI.Pid) {
365 if (WaitResult.Pid
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DCodeGenCoverage.cpp92 std::string Pid = local
101 std::string CoverageFilename = (CoveragePrefix + Pid).str();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DProgram.h46 procid_t Pid; /// The process identifier. member in struct:llvm::sys::ProcessInfo
178 /// \returns A \see ProcessInfo struct with Pid set to:

Completed in 127 milliseconds