Home
last modified time | relevance | path

Searched refs:m_continue_packet (Results 1 – 2 of 2) sorted by relevance

/openbsd/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteClientBase.cpp47 m_continue_packet = std::string(payload); in SendContinuePacketAndWaitForResponse()
139 m_continue_packet = 'c'; in SendContinuePacketAndWaitForResponse()
166 m_continue_packet = 'C'; in SendAsyncSignal()
167 m_continue_packet += llvm::hexdigit((signo / 16) % 16); in SendAsyncSignal()
168 m_continue_packet += llvm::hexdigit(signo % 16); in SendAsyncSignal()
330 __FUNCTION__, m_comm.m_continue_packet.c_str()); in lock()
341 if (m_comm.SendPacketNoLock(m_comm.m_continue_packet) != in lock()
H A DGDBRemoteClientBase.h131 std::string m_continue_packet; variable