Home
last modified time | relevance | path

Searched refs:PacketResult (Results 1 – 17 of 17) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.h132 PacketResult SendONotification(const char *buffer, uint32_t len);
134 PacketResult SendWResponse(NativeProcessProtocol *process);
138 PacketResult SendStopReplyPacketForThread(NativeProcessProtocol &process,
142 PacketResult SendStopReasonForState(NativeProcessProtocol &process,
148 PacketResult Handle_k(StringExtractorGDBRemote &packet);
150 PacketResult Handle_vKill(StringExtractorGDBRemote &packet);
152 PacketResult Handle_qProcessInfo(StringExtractorGDBRemote &packet);
154 PacketResult Handle_qC(StringExtractorGDBRemote &packet);
156 PacketResult Handle_QSetDisableASLR(StringExtractorGDBRemote &packet);
158 PacketResult Handle_QSetWorkingDir(StringExtractorGDBRemote &packet);
[all …]
H A DGDBRemoteCommunicationServerCommon.h38 PacketResult Handle_A(StringExtractorGDBRemote &packet);
40 PacketResult Handle_qHostInfo(StringExtractorGDBRemote &packet);
42 PacketResult Handle_qProcessInfoPID(StringExtractorGDBRemote &packet);
44 PacketResult Handle_qfProcessInfo(StringExtractorGDBRemote &packet);
46 PacketResult Handle_qsProcessInfo(StringExtractorGDBRemote &packet);
48 PacketResult Handle_qUserName(StringExtractorGDBRemote &packet);
50 PacketResult Handle_qGroupName(StringExtractorGDBRemote &packet);
52 PacketResult Handle_qSpeedTest(StringExtractorGDBRemote &packet);
54 PacketResult Handle_vFile_Open(StringExtractorGDBRemote &packet);
56 PacketResult Handle_vFile_Close(StringExtractorGDBRemote &packet);
[all …]
H A DGDBRemoteCommunicationServer.h31 std::function<PacketResult(StringExtractorGDBRemote &packet,
42 PacketResult GetPacketAndSendResponse(Timeout<std::micro> timeout,
55 PacketResult Handle_QErrorStringEnable(StringExtractorGDBRemote &packet);
57 PacketResult SendErrorResponse(const Status &error);
59 PacketResult SendErrorResponse(llvm::Error error);
61 PacketResult SendUnimplementedResponse(const char *packet);
63 PacketResult SendErrorResponse(uint8_t error);
65 PacketResult SendIllFormedResponse(const StringExtractorGDBRemote &packet,
68 PacketResult SendOKResponse();
71 PacketResult SendJSONResponse(const llvm::json::Value &value);
[all …]
H A DGDBRemoteCommunicationServer.cpp43 GDBRemoteCommunication::PacketResult
48 PacketResult packet_result = ReadPacket(packet, timeout, false); in GetPacketAndSendResponse()
49 if (packet_result == PacketResult::Success) { in GetPacketAndSendResponse()
90 GDBRemoteCommunication::PacketResult
96 GDBRemoteCommunication::PacketResult
104 GDBRemoteCommunication::PacketResult
115 GDBRemoteCommunication::PacketResult
130 GDBRemoteCommunication::PacketResult
137 GDBRemoteCommunication::PacketResult
147 GDBRemoteCommunication::PacketResult
[all …]
H A DGDBRemoteCommunicationServerPlatform.h113 PacketResult Handle_qLaunchGDBServer(StringExtractorGDBRemote &packet);
115 PacketResult Handle_qQueryGDBServer(StringExtractorGDBRemote &packet);
117 PacketResult Handle_qKillSpawnedProcess(StringExtractorGDBRemote &packet);
119 PacketResult Handle_qPathComplete(StringExtractorGDBRemote &packet);
121 PacketResult Handle_qProcessInfo(StringExtractorGDBRemote &packet);
123 PacketResult Handle_qGetWorkingDir(StringExtractorGDBRemote &packet);
125 PacketResult Handle_QSetWorkingDir(StringExtractorGDBRemote &packet);
127 PacketResult Handle_qC(StringExtractorGDBRemote &packet);
129 PacketResult Handle_jSignalsInfo(StringExtractorGDBRemote &packet);
H A DGDBRemoteClientBase.cpp62 PacketResult read_result = ReadPacket(response, computed_timeout, false); in SendContinuePacketAndWaitForResponse()
67 case PacketResult::ErrorReplyTimeout: { in SendContinuePacketAndWaitForResponse()
87 case PacketResult::Success: in SendContinuePacketAndWaitForResponse()
180 GDBRemoteCommunication::PacketResult
191 return PacketResult::ErrorSendFailed; in SendPacketAndWaitForResponse()
197 GDBRemoteCommunication::PacketResult
203 while (result == PacketResult::Success && response.IsNormalResponse() && in ReadPacketWithOutputSupport()
214 GDBRemoteCommunication::PacketResult
226 return PacketResult::ErrorSendFailed; in SendPacketAndReceiveResponseWithOutputSupport()
229 PacketResult packet_result = SendPacketNoLock(payload); in SendPacketAndReceiveResponseWithOutputSupport()
[all …]
H A DGDBRemoteCommunication.cpp112 GDBRemoteCommunication::PacketResult
124 GDBRemoteCommunication::PacketResult
128 PacketResult ret = PacketResult::Success; in SendNotificationPacketNoLock()
147 GDBRemoteCommunication::PacketResult
200 return PacketResult::Success; in SendRawPacketNoLock()
206 return PacketResult::ErrorSendFailed; in SendRawPacketNoLock()
209 GDBRemoteCommunication::PacketResult GDBRemoteCommunication::GetAck() { in GetAck()
211 PacketResult result = WaitForPacketNoLock(packet, GetPacketTimeout(), false); in GetAck()
212 if (result == PacketResult::Success) { in GetAck()
215 return PacketResult::Success; in GetAck()
[all …]
H A DGDBRemoteCommunication.h87 enum class PacketResult { enum
123 PacketResult GetAck();
183 PacketResult SendPacketNoLock(llvm::StringRef payload);
184 PacketResult SendNotificationPacketNoLock(llvm::StringRef notify_type,
187 PacketResult SendRawPacketNoLock(llvm::StringRef payload,
190 PacketResult ReadPacket(StringExtractorGDBRemote &response,
193 PacketResult WaitForPacketNoLock(StringExtractorGDBRemote &response,
242 lldb_private::process_gdb_remote::GDBRemoteCommunication::PacketResult> {
244 GDBRemoteCommunication::PacketResult &state,
H A DGDBRemoteCommunicationServerLLGS.cpp473 GDBRemoteCommunication::PacketResult
997 GDBRemoteCommunication::PacketResult
1010 PacketResult ret = SendNotificationPacketNoLock( in SendStopReplyPacketForThread()
1041 PacketResult result = SendStopReasonForState( in HandleInferiorState_Exited()
1043 if (result != PacketResult::Success) { in HandleInferiorState_Exited()
1083 PacketResult result = SendStopReasonForState( in HandleInferiorState_Stopped()
1085 if (result != PacketResult::Success) { in HandleInferiorState_Stopped()
1160 const PacketResult result = GetPacketAndSendResponse( in DataAvailableCallback()
1162 if (result == PacketResult::ErrorReplyTimeout) in DataAvailableCallback()
1165 if ((result != PacketResult::Success)) { in DataAvailableCallback()
[all …]
H A DGDBRemoteCommunicationClient.cpp213 PacketResult::Success) { in QueryNoAckModeSupported()
230 PacketResult::Success) { in GetListThreadsInStopReplySupported()
243 PacketResult::Success) { in GetVAttachOrWaitSupported()
257 PacketResult::Success) { in GetSyncThreadStateSupported()
366 PacketResult::Success) { in GetRemoteQSupported()
438 PacketResult::Success) { in GetThreadSuffixSupported()
455 PacketResult::Success) { in GetVContSupported()
504 GDBRemoteCommunication::PacketResult
515 return PacketResult::ErrorNoSequenceLock; in SendThreadSpecificPacketAndWaitForResponse()
522 return PacketResult::ErrorSendFailed; in SendThreadSpecificPacketAndWaitForResponse()
[all …]
H A DGDBRemoteCommunicationServerCommon.cpp177 GDBRemoteCommunication::PacketResult
313 GDBRemoteCommunication::PacketResult
330 GDBRemoteCommunication::PacketResult
413 GDBRemoteCommunication::PacketResult
425 GDBRemoteCommunication::PacketResult
448 GDBRemoteCommunication::PacketResult
467 GDBRemoteCommunication::PacketResult
499 GDBRemoteCommunication::PacketResult
548 GDBRemoteCommunication::PacketResult
571 GDBRemoteCommunication::PacketResult
[all …]
H A DGDBRemoteCommunicationServerPlatform.cpp154 return PacketResult::Success; in GDBRemoteCommunicationServerPlatform()
227 GDBRemoteCommunication::PacketResult
280 PacketResult packet_result = SendPacketNoLock(response.GetString()); in Handle_qLaunchGDBServer()
281 if (packet_result != PacketResult::Success) { in Handle_qLaunchGDBServer()
288 GDBRemoteCommunication::PacketResult
313 GDBRemoteCommunication::PacketResult
391 GDBRemoteCommunication::PacketResult
409 GDBRemoteCommunication::PacketResult
441 GDBRemoteCommunication::PacketResult
454 GDBRemoteCommunication::PacketResult
[all …]
H A DGDBRemoteClientBase.h57 PacketResult SendPacketAndWaitForResponse(
61 PacketResult ReadPacketWithOutputSupport(
66 PacketResult SendPacketAndReceiveResponseWithOutputSupport(
100 PacketResult
H A DProcessGDBRemote.cpp443 GDBRemoteCommunication::PacketResult::Success) { in BuildDynamicRegisterInfo()
2588 GDBRemoteCommunication::PacketResult::Success) { in DoReadMemory()
2745 GDBRemoteCommunication::PacketResult::Success) { in FlashErase()
2775 GDBRemoteCommunication::PacketResult::Success) { in FlashDone()
2836 GDBRemoteCommunication::PacketResult::Success) { in DoWriteMemory()
3903 GDBRemoteCommunication::PacketResult::Success) { in GetExtendedInfoForThread()
3972 GDBRemoteCommunication::PacketResult::Success) { in GetLoadedDynamicLibrariesInfos_sender()
3994 GDBRemoteCommunication::PacketResult::Success) { in GetDynamicLoaderProcessState()
4026 GDBRemoteCommunication::PacketResult::Success) { in GetSharedCacheInfo()
5164 GDBRemoteCommunication::PacketResult::Success) in GetFileLoadAddress()
[all …]
H A DGDBRemoteCommunicationClient.h633 PacketResult SendThreadSpecificPacketAndWaitForResponse(
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.cpp629 HexagonPacket PacketResult = Packet; in tryAuction()
631 llvm::stable_sort(PacketResult, HexagonInstr::lessCore); in tryAuction()
634 llvm::all_of(insts(PacketResult), [&AuctionCore](HexagonInstr const &I) { in tryAuction()
641 for (HexagonInstr const &ISJ : insts(PacketResult)) in tryAuction()
648 Res = PacketResult; in tryAuction()
630 HexagonPacket PacketResult = Packet; tryAuction() local
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-platform.cpp373 GDBRemoteCommunication::PacketResult::Success) in main_platform()