Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/unittests/tools/lldb-server/tests/
H A DLLGSTest.cpp34 Client.GetLatestStopReplyAs<StopReplyExit>(), in TEST_F()
52 Client.GetLatestStopReplyAs<StopReplyExit>(), in TEST_F()
H A DMessageObjects.h145 class StopReplyExit : public StopReply {
147 explicit StopReplyExit(uint8_t Status) : Status(Status) {} in StopReplyExit() function
149 static llvm::Expected<std::unique_ptr<StopReplyExit>>
H A DMessageObjects.cpp234 return StopReplyExit::create(Response); in create()
326 Expected<std::unique_ptr<StopReplyExit>>
327 StopReplyExit::create(StringRef Response) { in create()
331 return std::make_unique<StopReplyExit>(Status); in create()