Searched refs:SecondsToWait (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | Program.cpp | 35 unsigned SecondsToWait, unsigned MemoryLimit, in ExecuteAndWait() argument 46 PI, SecondsToWait == 0 ? std::nullopt : std::optional(SecondsToWait), in ExecuteAndWait()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Program.h | 123 unsigned SecondsToWait = 0, ///< If non-zero, this specifies the amount 213 std::optional<unsigned> SecondsToWait, ///< If std::nullopt, waits until
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/ |
H A D | Program.inc | 399 std::optional<unsigned> SecondsToWait, 409 if (!SecondsToWait) { 412 if (*SecondsToWait == 0) 423 alarm(*SecondsToWait); 444 if (SecondsToWait && errno == EINTR && !Polling) { 471 if (SecondsToWait && !WaitUntilTerminates) {
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
H A D | Program.inc | 415 std::optional<unsigned> SecondsToWait, 422 DWORD milliSecondsToWait = SecondsToWait ? *SecondsToWait * 1000 : INFINITE; 429 if (!Polling && *SecondsToWait > 0) {
|
/freebsd/contrib/llvm-project/clang/include/clang/Driver/ |
H A D | ToolChain.h | 209 unsigned SecondsToWait = 0) const;
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ |
H A D | ToolChain.cpp | 108 unsigned SecondsToWait) const { in executeToolChainProgram() 119 if (llvm::sys::ExecuteAndWait(Executable, {}, {}, Redirects, SecondsToWait, in executeToolChainProgram()
|