Home
last modified time | relevance | path

Searched refs:timeout_sec (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/compiler-rt/test/sanitizer_common/android_commands/
H A Dandroid_common.py16 def adb(args, attempts = 1, timeout_sec = 600): argument
24 …ret = subprocess.call(['timeout', str(timeout_sec), ADB] + args, stdout=out, stderr=subprocess.STD…
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectPlatform.cpp1723 uint32_t timeout_sec; in SetOptionValue() local
1724 if (option_arg.getAsInteger(10, timeout_sec)) in SetOptionValue()
1729 m_timeout = std::chrono::seconds(timeout_sec); in SetOptionValue()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.cpp2940 uint32_t timeout_sec = UINT32_MAX; in RunShellCommand() local
2943 timeout_sec = std::ceil(std::chrono::duration<double>(*timeout).count()); in RunShellCommand()
2945 stream.PutHex32(timeout_sec); in RunShellCommand()