Searched refs:packet_type (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServer.cpp | 39 StringExtractorGDBRemote::ServerPacketType packet_type, in RegisterPacketHandler() argument 41 m_packet_handlers[packet_type] = std::move(handler); in RegisterPacketHandler() 51 const StringExtractorGDBRemote::ServerPacketType packet_type = in GetPacketAndSendResponse() local 53 switch (packet_type) { in GetPacketAndSendResponse() 68 auto handler_it = m_packet_handlers.find(packet_type); in GetPacketAndSendResponse()
|
| H A D | GDBRemoteCommunicationServerCommon.h | 119 StringExtractorGDBRemote::ServerPacketType packet_type, in RegisterMemberFunctionHandler() argument 121 RegisterPacketHandler(packet_type, in RegisterMemberFunctionHandler()
|
| H A D | GDBRemoteCommunicationServer.h | 40 RegisterPacketHandler(StringExtractorGDBRemote::ServerPacketType packet_type,
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/ |
| H A D | vscode.py | 87 def packet_type_is(packet, packet_type): argument 88 return 'type' in packet and packet['type'] == packet_type 201 packet_type = packet['type'] 202 if packet_type == 'event': 249 elif packet_type == 'response': 287 packet_type = curr_packet['type'] 288 if filter_type is None or packet_type in filter_type: 290 (packet_type == 'event' and
|
| /llvm-project-15.0.7/lldb/tools/lldb-vscode/ |
| H A D | VSCode.cpp | 493 const auto packet_type = GetString(object, "type"); in HandleObject() local 494 if (packet_type == "request") { in HandleObject() 515 const auto packet_type = GetString(response, "type"); in SendReverseRequest() local 516 if (packet_type == "response") in SendReverseRequest()
|
| /llvm-project-15.0.7/lldb/test/API/tools/lldb-server/attach-wait/ |
| H A D | TestGdbRemoteAttachWait.py | 46 def _attach_packet(self, packet_type): argument 47 return "read packet: ${};{}#00".format(packet_type,
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/tools/lldb-server/ |
| H A D | lldbgdbserverutils.py | 54 def _is_packet_lldb_gdbserver_input(packet_type, llgs_input_is_read): argument 69 if packet_type == 'read': 73 elif packet_type == 'send': 79 raise "Unknown packet type: {}".format(packet_type)
|