Home
last modified time | relevance | path

Searched refs:SecondsToWait (Results 1 – 5 of 5) 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.h124 unsigned SecondsToWait = 0, ///< If non-zero, this specifies the amount
214 std::optional<unsigned> SecondsToWait, ///< If std::nullopt, waits until
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc382 std::optional<unsigned> SecondsToWait,
392 if (!SecondsToWait) {
395 if (*SecondsToWait == 0)
406 alarm(*SecondsToWait);
427 if (SecondsToWait && errno == EINTR && !Polling) {
454 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/lib/Driver/
H A DToolChain.cpp120 int SecondsToWait = 60; in executeToolChainProgram() local
123 if (!llvm::to_integer(*Str, SecondsToWait)) in executeToolChainProgram()
128 SecondsToWait = std::max(SecondsToWait, 0); // infinite in executeToolChainProgram()
131 SecondsToWait, in executeToolChainProgram()