Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp505 return SendNotificationPacketNoLock("Stop", m_stop_notification_queue, in SendWResponse()
1011 "Stop", m_stop_notification_queue, response.GetString()); in SendStopReplyPacketForThread()
1029 m_stop_notification_queue.push_back(stop_reply.GetString().str()); in EnqueueStopReplyPackets()
1890 llvm::erase_if(m_stop_notification_queue, [](const std::string &x) { in Handle_stop_reason()
1902 m_stop_notification_queue.push_back(stop_reply.GetString().str()); in Handle_stop_reason()
1909 if (m_stop_notification_queue.empty()) in Handle_stop_reason()
1913 return SendPacketNoLock(m_stop_notification_queue.front()); in Handle_stop_reason()
3972 m_stop_notification_queue.clear(); in Handle_QNonStop()
4012 PacketResult ret = HandleNotificationAck(m_stop_notification_queue); in Handle_vStopped()
4015 if (m_stop_notification_queue.empty() && m_debugged_processes.empty()) { in Handle_vStopped()
H A DGDBRemoteCommunicationServerLLGS.h123 std::deque<std::string> m_stop_notification_queue; variable