Lines Matching refs:interrupt_timeout
41 llvm::StringRef payload, std::chrono::seconds interrupt_timeout, in SendContinuePacketAndWaitForResponse() argument
60 std::chrono::seconds computed_timeout = std::min(interrupt_timeout, in SendContinuePacketAndWaitForResponse()
66 computed_timeout = std::min(interrupt_timeout, kWakeupInterval); in SendContinuePacketAndWaitForResponse()
162 int signo, std::chrono::seconds interrupt_timeout) { in SendAsyncSignal() argument
163 Lock lock(*this, interrupt_timeout); in SendAsyncSignal()
173 bool GDBRemoteClientBase::Interrupt(std::chrono::seconds interrupt_timeout) { in Interrupt() argument
174 Lock lock(*this, interrupt_timeout); in Interrupt()
184 std::chrono::seconds interrupt_timeout) { in SendPacketAndWaitForResponse() argument
185 Lock lock(*this, interrupt_timeout); in SendPacketAndWaitForResponse()
202 std::chrono::seconds interrupt_timeout, in SendPacketAndReceiveResponseWithOutputSupport() argument
204 Lock lock(*this, interrupt_timeout); in SendPacketAndReceiveResponseWithOutputSupport()
253 llvm::StringRef payload, std::chrono::seconds interrupt_timeout, in SendvContPacket() argument
259 Lock lock(*this, interrupt_timeout); in SendvContPacket()
368 std::chrono::seconds interrupt_timeout) in Lock() argument
370 m_interrupt_timeout(interrupt_timeout), m_acquired(false), in Lock()