Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp1006 return SendErrorResponse(51); in SendStopReplyPacketForThread()
1010 return SendErrorResponse(42); in SendStopReplyPacketForThread()
1293 return SendErrorResponse(Status::FromErrorString("Process not running.")); in Handle_jLLDBTraceSupported()
1304 return SendErrorResponse(Status::FromErrorString("Process not running.")); in Handle_jLLDBTraceStop()
1310 return SendErrorResponse(stop_request.takeError()); in Handle_jLLDBTraceStop()
1313 return SendErrorResponse(std::move(err)); in Handle_jLLDBTraceStop()
1325 return SendErrorResponse(Status::FromErrorString("Process not running.")); in Handle_jLLDBTraceStart()
1331 return SendErrorResponse(request.takeError()); in Handle_jLLDBTraceStart()
1334 return SendErrorResponse(std::move(err)); in Handle_jLLDBTraceStart()
1346 return SendErrorResponse(Status::FromErrorString("Process not running.")); in Handle_jLLDBTraceGetState()
[all …]
H A DGDBRemoteCommunicationServerCommon.cpp330 return SendErrorResponse(1); in Handle_qProcessInfoPID()
362 return SendErrorResponse(2); in Handle_qfProcessInfo()
366 return SendErrorResponse(2); in Handle_qfProcessInfo()
371 return SendErrorResponse(2); in Handle_qfProcessInfo()
376 return SendErrorResponse(2); in Handle_qfProcessInfo()
381 return SendErrorResponse(2); in Handle_qfProcessInfo()
386 return SendErrorResponse(2); in Handle_qfProcessInfo()
391 return SendErrorResponse(2); in Handle_qfProcessInfo()
404 return SendErrorResponse(2); in Handle_qfProcessInfo()
413 return SendErrorResponse(3); in Handle_qfProcessInfo()
[all …]
H A DGDBRemoteCommunicationServer.cpp97 GDBRemoteCommunicationServer::SendErrorResponse(uint8_t err) { in SendErrorResponse() function in GDBRemoteCommunicationServer
105 GDBRemoteCommunicationServer::SendErrorResponse(const Status &error) { in SendErrorResponse() function in GDBRemoteCommunicationServer
113 return SendErrorResponse(code); in SendErrorResponse()
117 GDBRemoteCommunicationServer::SendErrorResponse(llvm::Error error) { in SendErrorResponse() function in GDBRemoteCommunicationServer
127 return SendErrorResponse(Status::FromError(llvm::Error(std::move(EIB)))); in SendErrorResponse()
145 return SendErrorResponse(0x03); in SendIllFormedResponse()
166 return SendErrorResponse(value.takeError()); in SendJSONResponse()
H A DGDBRemoteCommunicationServerPlatform.cpp181 return SendErrorResponse(9); // EBADF in Handle_qLaunchGDBServer()
206 return SendErrorResponse(4); in Handle_qQueryGDBServer()
237 return SendErrorResponse(10); in Handle_qKillSpawnedProcess()
244 return SendErrorResponse(11); in Handle_qKillSpawnedProcess()
304 return SendErrorResponse(1); in Handle_qProcessInfo()
308 return SendErrorResponse(1); in Handle_qProcessInfo()
321 return SendErrorResponse(85); in Handle_qPathComplete()
353 return SendErrorResponse(ec.value()); in Handle_qGetWorkingDir()
368 return SendErrorResponse(ec.value()); in Handle_QSetWorkingDir()
H A DGDBRemoteCommunicationServer.h57 PacketResult SendErrorResponse(const Status &error);
59 PacketResult SendErrorResponse(llvm::Error error);
63 PacketResult SendErrorResponse(uint8_t error);