Home
last modified time | relevance | path

Searched refs:stop_packet (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.h115 void SetStopInfoFromPacket(StringExtractor &stop_packet, uint32_t stop_id);
H A DProcessGDBRemote.cpp1640 StringExtractorGDBRemote stop_packet; in CalculateThreadStopInfo() local
1641 if (GetGDBRemote().GetThreadStopInfo(thread->GetProtocolID(), stop_packet)) in CalculateThreadStopInfo()
1642 return SetThreadStopInfo(stop_packet) == eStateStopped; in CalculateThreadStopInfo()
2093 StateType ProcessGDBRemote::SetThreadStopInfo(StringExtractor &stop_packet) { in SetThreadStopInfo() argument
2095 stop_packet.SetFilePos(0); in SetThreadStopInfo()
2096 const char stop_type = stop_packet.GetChar(); in SetThreadStopInfo()
2116 const uint8_t signo = stop_packet.GetHexU8(); in SetThreadStopInfo()
2133 while (stop_packet.GetNameColonValue(key, value)) { in SetThreadStopInfo()
H A DProcessGDBRemote.h352 lldb::StateType SetThreadStopInfo(StringExtractor &stop_packet);