Home
last modified time | relevance | path

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

/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()
/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
/llvm-project/llvm/lib/Support/Unix/
H A DProgram.inc389 std::optional<unsigned> SecondsToWait,
399 if (!SecondsToWait) {
402 if (*SecondsToWait == 0)
413 alarm(*SecondsToWait);
434 if (SecondsToWait && errno == EINTR && !Polling) {
461 if (SecondsToWait && !WaitUntilTerminates) {
/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) {
/llvm-project/clang/include/clang/Driver/
H A DToolChain.h
/llvm-project/clang/lib/Driver/
H A DToolChain.cpp120 int SecondsToWait = 60; in executeToolChainProgram()
123 if (!llvm::to_integer(*Str, SecondsToWait)) in executeToolChainProgram()
128 SecondsToWait = std::max(SecondsToWait, 0); // infinite in executeToolChainProgram()
131 SecondsToWait, in executeToolChainProgram()