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"
35 Process::FindInEnvPath(StringRef EnvName, StringRef FileName, char Separator) {
40 Process::FindInEnvPath(StringRef EnvName, StringRef FileName,
44 std::optional<std::string> OptPath = Process::GetEnv(EnvName);
106 // may disable core dumps by calling Process::PreventCoreFiles().
109 bool Process::AreCoreFilesPrevented() { return coreFilesPrevented; }
111 [[noreturn]] void Process::Exit(int RetCode, bool NoCleanup) {
123 #include "Unix/Process.inc"
126 #include "Windows/Process.inc"