Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp509 return SendNotificationPacketNoLock("Stop", m_stop_notification_queue, in SendWResponse()
1013 "Stop", m_stop_notification_queue, response.GetString()); in SendStopReplyPacketForThread()
1031 m_stop_notification_queue.push_back(stop_reply.GetString().str()); in EnqueueStopReplyPackets()
1885 llvm::erase_if(m_stop_notification_queue, [](const std::string &x) { in Handle_stop_reason()
1897 m_stop_notification_queue.push_back(stop_reply.GetString().str()); in Handle_stop_reason()
1904 if (m_stop_notification_queue.empty()) in Handle_stop_reason()
1908 return SendPacketNoLock(m_stop_notification_queue.front()); in Handle_stop_reason()
3948 m_stop_notification_queue.clear(); in Handle_QNonStop()
3988 PacketResult ret = HandleNotificationAck(m_stop_notification_queue); in Handle_vStopped()
3991 if (m_stop_notification_queue.empty() && m_debugged_processes.empty()) { in Handle_vStopped()
H A DGDBRemoteCommunicationServerLLGS.h122 std::deque<std::string> m_stop_notification_queue; variable