Home
last modified time | relevance | path

Searched refs:secondsToWait (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/Support/
DProgram.cpp29 unsigned secondsToWait, in ExecuteAndWait() argument
34 return prg.Wait(path, secondsToWait, ErrMsg); in ExecuteAndWait()
/external/llvm/include/llvm/Support/
DProgram.h95 unsigned secondsToWait, ///< If non-zero, this specifies the amount
139 unsigned secondsToWait = 0,
/external/llvm/lib/Support/Unix/
DProgram.inc300 unsigned secondsToWait,
314 if (secondsToWait) {
319 alarm(secondsToWait);
327 if (secondsToWait && errno == EINTR) {
348 if (secondsToWait) {
/external/llvm/lib/Support/Windows/
DProgram.inc334 unsigned secondsToWait,
346 if (secondsToWait > 0)
347 millisecondsToWait = secondsToWait * 1000;