Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/unittests/tools/lldb-server/tests/
H A DMessageObjects.cpp232 return StopReplyStop::create(Response, Endian, RegInfos); in create()
238 Expected<RegisterMap> StopReplyStop::parseRegisters( in parseRegisters()
265 Expected<std::unique_ptr<StopReplyStop>>
266 StopReplyStop::create(StringRef Response, support::endianness Endian, in create()
321 return std::make_unique<StopReplyStop>(Signal, Thread, Name, in create()
H A DMessageObjects.h107 class StopReplyStop : public StopReply {
109 StopReplyStop(uint8_t Signal, lldb::tid_t ThreadId, llvm::StringRef Name, in StopReplyStop() function
116 static llvm::Expected<std::unique_ptr<StopReplyStop>>
H A DTestClient.cpp262 if (!isa<StopReplyStop>(m_stop_reply)) { in Continue()