Lines Matching refs:interrupt_timeout
40 llvm::StringRef payload, std::chrono::seconds interrupt_timeout, in SendContinuePacketAndWaitForResponse() argument
59 std::chrono::seconds computed_timeout = std::min(interrupt_timeout, in SendContinuePacketAndWaitForResponse()
65 computed_timeout = std::min(interrupt_timeout, kWakeupInterval); in SendContinuePacketAndWaitForResponse()
161 int signo, std::chrono::seconds interrupt_timeout) { in SendAsyncSignal() argument
162 Lock lock(*this, interrupt_timeout); in SendAsyncSignal()
172 bool GDBRemoteClientBase::Interrupt(std::chrono::seconds interrupt_timeout) { in Interrupt() argument
173 Lock lock(*this, interrupt_timeout); in Interrupt()
183 std::chrono::seconds interrupt_timeout) { in SendPacketAndWaitForResponse() argument
184 Lock lock(*this, interrupt_timeout); in SendPacketAndWaitForResponse()
217 std::chrono::seconds interrupt_timeout, in SendPacketAndReceiveResponseWithOutputSupport() argument
219 Lock lock(*this, interrupt_timeout); in SendPacketAndReceiveResponseWithOutputSupport()
356 std::chrono::seconds interrupt_timeout) in Lock() argument
358 m_interrupt_timeout(interrupt_timeout), m_acquired(false), in Lock()