Home
last modified time | relevance | path

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

/external/llvm-project/lldb/unittests/tools/lldb-server/tests/
DLLGSTest.cpp34 Client.GetLatestStopReplyAs<StopReplyExit>(), in TEST_F()
52 Client.GetLatestStopReplyAs<StopReplyExit>(), in TEST_F()
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>>
DMessageObjects.cpp236 return StopReplyExit::create(Response); in create()
328 Expected<std::unique_ptr<StopReplyExit>>
329 StopReplyExit::create(StringRef Response) { in create()
333 return std::make_unique<StopReplyExit>(Status); in create()