Lines Matching refs:command

65     const CommandType command, const PacketStreamType &request_packet,  in SendRequestAndGetReply()  argument
97 if ((reply_command & eCommandTypeMask) == command) { in SendRequestAndGetReply()
99 if (command == KDP_RESUMECPUS) in SendRequestAndGetReply()
342 const CommandType command = KDP_CONNECT; in SendRequestConnect() local
346 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestConnect()
354 return SendRequestAndGetReply(command, request_packet, reply_packet); in SendRequestConnect()
369 const CommandType command = KDP_REATTACH; in SendRequestReattach() local
372 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestReattach()
378 if (SendRequestAndGetReply(command, request_packet, reply_packet)) { in SendRequestReattach()
403 const CommandType command = KDP_VERSION; in SendRequestVersion() local
405 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestVersion()
407 if (SendRequestAndGetReply(command, request_packet, reply_packet)) { in SendRequestVersion()
489 const CommandType command = KDP_HOSTINFO; in SendRequestHostInfo() local
491 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestHostInfo()
493 if (SendRequestAndGetReply(command, request_packet, reply_packet)) { in SendRequestHostInfo()
519 const CommandType command = KDP_KERNELVERSION; in SendRequestKernelVersion() local
521 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestKernelVersion()
523 if (SendRequestAndGetReply(command, request_packet, reply_packet)) { in SendRequestKernelVersion()
535 const CommandType command = KDP_DISCONNECT; in SendRequestDisconnect() local
537 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestDisconnect()
539 if (SendRequestAndGetReply(command, request_packet, reply_packet)) { in SendRequestDisconnect()
553 const CommandType command = use_64 ? KDP_READMEM64 : KDP_READMEM; in SendRequestReadMemory() local
556 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestReadMemory()
560 if (SendRequestAndGetReply(command, request_packet, reply_packet)) { in SendRequestReadMemory()
592 const CommandType command = use_64 ? KDP_WRITEMEM64 : KDP_WRITEMEM; in SendRequestWriteMemory() local
595 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestWriteMemory()
601 if (SendRequestAndGetReply(command, request_packet, reply_packet)) { in SendRequestWriteMemory()
626 const CommandType command = (CommandType)command_byte; in SendRawRequest() local
627 MakeRequestPacketHeader(command, request_packet, command_length); in SendRawRequest()
630 if (SendRequestAndGetReply(command, request_packet, reply_packet)) { in SendRawRequest()
646 const char *CommunicationKDP::GetCommandAsCString(uint8_t command) { in GetCommandAsCString() argument
647 switch (command) { in GetCommandAsCString()
732 const CommandType command = ExtractCommand(first_packet_byte); in DumpPacket() local
733 const char *command_name = GetCommandAsCString(command); in DumpPacket()
742 switch (command) { in DumpPacket()
893 switch (command) { in DumpPacket()
1173 const CommandType command = KDP_READREGS; in SendRequestReadRegisters() local
1176 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestReadRegisters()
1180 if (SendRequestAndGetReply(command, request_packet, reply_packet)) { in SendRequestReadRegisters()
1216 const CommandType command = KDP_WRITEREGS; in SendRequestWriteRegisters() local
1219 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestWriteRegisters()
1224 if (SendRequestAndGetReply(command, request_packet, reply_packet)) { in SendRequestWriteRegisters()
1241 const CommandType command = KDP_RESUMECPUS; in SendRequestResume() local
1243 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestResume()
1247 return SendRequestAndGetReply(command, request_packet, reply_packet); in SendRequestResume()
1255 const CommandType command = in SendRequestBreakpoint() local
1260 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestBreakpoint()
1264 if (SendRequestAndGetReply(command, request_packet, reply_packet)) { in SendRequestBreakpoint()
1276 const CommandType command = KDP_SUSPEND; in SendRequestSuspend() local
1278 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestSuspend()
1280 return SendRequestAndGetReply(command, request_packet, reply_packet); in SendRequestSuspend()