Lines Matching refs:Process
1 //===-- Process.cpp - Implement OS Process Concept --------------*- C++ -*-===//
9 // This file implements the operating system Process concept.
13 #include "llvm/Support/Process.h"
34 Process::FindInEnvPath(StringRef EnvName, StringRef FileName, char Separator) {
39 Process::FindInEnvPath(StringRef EnvName, StringRef FileName,
43 std::optional<std::string> OptPath = Process::GetEnv(EnvName);
105 // may disable core dumps by calling Process::PreventCoreFiles().
108 bool Process::AreCoreFilesPrevented() { return coreFilesPrevented; }
110 [[noreturn]] void Process::Exit(int RetCode, bool NoCleanup) {
122 #include "Unix/Process.inc"
125 #include "Windows/Process.inc"