Lines Matching refs:command

65     const CommandType command, const PacketStreamType &request_packet,
97 if ((reply_command & eCommandTypeMask) == command) {
99 if (command == KDP_RESUMECPUS)
322 // Unrecognized reply command byte, erase this byte and try to get back
342 const CommandType command = KDP_CONNECT;
346 MakeRequestPacketHeader(command, request_packet, command_length);
354 return SendRequestAndGetReply(command, request_packet, reply_packet);
369 const CommandType command = KDP_REATTACH;
372 MakeRequestPacketHeader(command, request_packet, command_length);
378 if (SendRequestAndGetReply(command, request_packet, reply_packet)) {
403 const CommandType command = KDP_VERSION;
405 MakeRequestPacketHeader(command, request_packet, command_length);
407 if (SendRequestAndGetReply(command, request_packet, reply_packet)) {
489 const CommandType command = KDP_HOSTINFO;
491 MakeRequestPacketHeader(command, request_packet, command_length);
493 if (SendRequestAndGetReply(command, request_packet, reply_packet)) {
519 const CommandType command = KDP_KERNELVERSION;
521 MakeRequestPacketHeader(command, request_packet, command_length);
523 if (SendRequestAndGetReply(command, request_packet, reply_packet)) {
535 const CommandType command = KDP_DISCONNECT;
537 MakeRequestPacketHeader(command, request_packet, command_length);
539 if (SendRequestAndGetReply(command, request_packet, reply_packet)) {
553 const CommandType command = use_64 ? KDP_READMEM64 : KDP_READMEM;
556 MakeRequestPacketHeader(command, request_packet, command_length);
560 if (SendRequestAndGetReply(command, request_packet, reply_packet)) {
592 const CommandType command = use_64 ? KDP_WRITEMEM64 : KDP_WRITEMEM;
595 MakeRequestPacketHeader(command, request_packet, command_length);
601 if (SendRequestAndGetReply(command, request_packet, reply_packet)) {
626 const CommandType command = (CommandType)command_byte;
627 MakeRequestPacketHeader(command, request_packet, command_length);
630 if (SendRequestAndGetReply(command, request_packet, reply_packet)) {
646 const char *CommunicationKDP::GetCommandAsCString(uint8_t command) {
647 switch (command) {
732 const CommandType command = ExtractCommand(first_packet_byte);
733 const char *command_name = GetCommandAsCString(command);
742 switch (command) {
893 switch (command) {
1146 error_desc = "error: invalid packet command: ";
1173 const CommandType command = KDP_READREGS;
1176 MakeRequestPacketHeader(command, request_packet, command_length);
1180 if (SendRequestAndGetReply(command, request_packet, reply_packet)) {
1216 const CommandType command = KDP_WRITEREGS;
1219 MakeRequestPacketHeader(command, request_packet, command_length);
1224 if (SendRequestAndGetReply(command, request_packet, reply_packet)) {
1241 const CommandType command = KDP_RESUMECPUS;
1243 MakeRequestPacketHeader(command, request_packet, command_length);
1247 return SendRequestAndGetReply(command, request_packet, reply_packet);
1255 const CommandType command =
1260 MakeRequestPacketHeader(command, request_packet, command_length);
1264 if (SendRequestAndGetReply(command, request_packet, reply_packet)) {
1276 const CommandType command = KDP_SUSPEND;
1278 MakeRequestPacketHeader(command, request_packet, command_length);
1280 return SendRequestAndGetReply(command, request_packet, reply_packet);