Searched refs:SecondsToWait (Results 1 – 5 of 5) 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 | 124 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 D | Program.inc | 382 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 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/lib/Driver/ |
| H A D | ToolChain.cpp | 120 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()
|