Home | History | Annotate | Download | only in MacOSX-Kernel

Lines Matching defs:command

99 CommunicationKDP::SendRequestAndGetReply (const CommandType command,
137 if ((reply_command & eCommandTypeMask) == command)
140 if (command == KDP_RESUMECPUS)
383 // Unrecognized reply command byte, erase this byte and try to get back on track
406 const CommandType command = KDP_CONNECT;
409 MakeRequestPacketHeader (command, request_packet, command_length);
417 return SendRequestAndGetReply (command, request_packet, reply_packet);
435 const CommandType command = KDP_REATTACH;
438 MakeRequestPacketHeader (command, request_packet, command_length);
444 if (SendRequestAndGetReply (command, request_packet, reply_packet))
475 const CommandType command = KDP_VERSION;
477 MakeRequestPacketHeader (command, request_packet, command_length);
479 if (SendRequestAndGetReply (command, request_packet, reply_packet))
502 const CommandType command = KDP_IMAGEPATH;
504 MakeRequestPacketHeader (command, request_packet, command_length);
506 if (SendRequestAndGetReply (command, request_packet, reply_packet))
612 const CommandType command = KDP_HOSTINFO;
614 MakeRequestPacketHeader (command, request_packet, command_length);
616 if (SendRequestAndGetReply (command, request_packet, reply_packet))
647 const CommandType command = KDP_KERNELVERSION;
649 MakeRequestPacketHeader (command, request_packet, command_length);
651 if (SendRequestAndGetReply (command, request_packet, reply_packet))
665 const CommandType command = KDP_DISCONNECT;
667 MakeRequestPacketHeader (command, request_packet, command_length);
669 if (SendRequestAndGetReply (command, request_packet, reply_packet))
686 const CommandType command = use_64 ? KDP_READMEM64 : KDP_READMEM;
689 MakeRequestPacketHeader (command, request_packet, command_length);
693 if (SendRequestAndGetReply (command, request_packet, reply_packet))
731 const CommandType command = use_64 ? KDP_WRITEMEM64 : KDP_WRITEMEM;
734 MakeRequestPacketHeader (command, request_packet, command_length);
740 if (SendRequestAndGetReply (command, request_packet, reply_packet))
769 const CommandType command = (CommandType)command_byte;
770 MakeRequestPacketHeader (command, request_packet, command_length);
773 if (SendRequestAndGetReply (command, request_packet, reply_packet))
794 CommunicationKDP::GetCommandAsCString (uint8_t command)
796 switch (command)
856 const CommandType command = ExtractCommand (first_packet_byte);
857 const char *command_name = GetCommandAsCString (command);
873 switch (command)
1034 switch (command)
1297 error_desc = "error: invalid packet command: ";
1324 const CommandType command = KDP_READREGS;
1327 MakeRequestPacketHeader (command, request_packet, command_length);
1331 if (SendRequestAndGetReply (command, request_packet, reply_packet))
1370 const CommandType command = KDP_WRITEREGS;
1373 MakeRequestPacketHeader (command, request_packet, command_length);
1378 if (SendRequestAndGetReply (command, request_packet, reply_packet))
1398 const CommandType command = KDP_RESUMECPUS;
1400 MakeRequestPacketHeader (command, request_packet, command_length);
1404 if (SendRequestAndGetReply (command, request_packet, reply_packet))
1415 const CommandType command = set ? (use_64 ? KDP_BREAKPOINT_SET64 : KDP_BREAKPOINT_SET ):
1419 MakeRequestPacketHeader (command, request_packet, command_length);
1423 if (SendRequestAndGetReply (command, request_packet, reply_packet))
1437 const CommandType command = KDP_SUSPEND;
1439 MakeRequestPacketHeader (command, request_packet, command_length);
1441 if (SendRequestAndGetReply (command, request_packet, reply_packet))