Home
last modified time | relevance | path

Searched refs:SendErrorResponse (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp1005 return SendErrorResponse(51); in SendStopReplyPacketForThread()
1009 return SendErrorResponse(42); in SendStopReplyPacketForThread()
1386 return SendErrorResponse(68); in Handle_qProcessInfo()
1391 return SendErrorResponse(1); in Handle_qProcessInfo()
1395 return SendErrorResponse(1); in Handle_qProcessInfo()
1407 return SendErrorResponse(68); in Handle_qC()
1416 return SendErrorResponse(69); in Handle_qC()
1510 return SendErrorResponse(14); in Handle_qGetWorkingDir()
1971 return SendErrorResponse(0); in SendStopReasonForState()
3499 return SendErrorResponse(8); in Handle_vRun()
[all …]
H A DGDBRemoteCommunicationServerCommon.cpp328 return SendErrorResponse(1); in Handle_qProcessInfoPID()
411 return SendErrorResponse(3); in Handle_qfProcessInfo()
423 return SendErrorResponse(4); in Handle_qsProcessInfo()
446 return SendErrorResponse(5); in Handle_qUserName()
465 return SendErrorResponse(6); in Handle_qGroupName()
497 return SendErrorResponse(7); in Handle_qSpeedTest()
535 return SendErrorResponse(18); in Handle_vFile_Open()
604 return SendErrorResponse(21); in Handle_vFile_pRead()
639 return SendErrorResponse(27); in Handle_vFile_pWrite()
661 return SendErrorResponse(22); in Handle_vFile_Size()
[all …]
H A DGDBRemoteCommunicationServer.cpp98 GDBRemoteCommunicationServer::SendErrorResponse(uint8_t err) { in SendErrorResponse() function in GDBRemoteCommunicationServer
106 GDBRemoteCommunicationServer::SendErrorResponse(const Status &error) { in SendErrorResponse() function in GDBRemoteCommunicationServer
113 return SendErrorResponse(error.GetError()); in SendErrorResponse()
117 GDBRemoteCommunicationServer::SendErrorResponse(llvm::Error error) { in SendErrorResponse() function in GDBRemoteCommunicationServer
127 return SendErrorResponse(Status(llvm::Error(std::move(EIB)))); in SendErrorResponse()
145 return SendErrorResponse(0x03); in SendIllFormedResponse()
167 return SendErrorResponse(value.takeError()); in SendJSONResponse()
H A DGDBRemoteCommunicationServer.h58 PacketResult SendErrorResponse(const Status &error);
60 PacketResult SendErrorResponse(llvm::Error error);
64 PacketResult SendErrorResponse(uint8_t error);
H A DGDBRemoteCommunicationServerPlatform.cpp260 return SendErrorResponse(9); in Handle_qLaunchGDBServer()
292 return SendErrorResponse(4); in Handle_qQueryGDBServer()
323 return SendErrorResponse(10); in Handle_qKillSpawnedProcess()
331 return SendErrorResponse(11); in Handle_qKillSpawnedProcess()
396 return SendErrorResponse(1); in Handle_qProcessInfo()
400 return SendErrorResponse(1); in Handle_qProcessInfo()
413 return SendErrorResponse(85); in Handle_qPathComplete()
445 return SendErrorResponse(ec.value()); in Handle_qGetWorkingDir()
460 return SendErrorResponse(ec.value()); in Handle_QSetWorkingDir()
/llvm-project-15.0.7/lldb/unittests/Process/gdb-remote/
H A DGDBRemoteCommunicationServerTest.cpp21 server.SendErrorResponse(0x42); in TEST()
32 server.SendErrorResponse(status); in TEST()
43 server.SendErrorResponse(std::move(error)); in TEST()
53 server.SendErrorResponse(std::move(error)); in TEST()
66 server.SendErrorResponse(std::move(error)); in TEST()
H A DGDBRemoteTestUtils.h71 using GDBRemoteCommunicationServer::SendErrorResponse;