Home
last modified time | relevance | path

Searched refs:SecondsToWait (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DProgram.cpp35 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 DProgram.h123 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 DProgram.inc399 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 DProgram.inc415 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 DToolChain.h209 unsigned SecondsToWait = 0) const;
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DToolChain.cpp108 unsigned SecondsToWait) const { in executeToolChainProgram()
119 if (llvm::sys::ExecuteAndWait(Executable, {}, {}, Redirects, SecondsToWait, in executeToolChainProgram()