Searched refs:CommandType (Results 1 – 3 of 3) sorted by relevance
/llvm-project/lld/MachO/ |
H A D | InputFiles.h | 333 template <class CommandType, class... Types> 334 std::vector<const CommandType *> in findCommands() 336 std::vector<const CommandType *> cmds; in findCommands() 342 auto *cmd = reinterpret_cast<const CommandType *>(p); in findCommands() 356 template <class CommandType = llvm::MachO::load_command, class... Types> in findCommand() 357 const CommandType *findCommand(const void *anyHdr, Types... types) { in findCommand() 358 std::vector<const CommandType *> cmds = in findCommand() 359 detail::findCommands<CommandType>(anyHdr, 1, types...); in findCommand() 363 template <class CommandType = llvm::MachO::load_command, class... Types> in findCommands() 364 std::vector<const CommandType *> findCommand in findCommands() [all...] |
/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/ |
H A D | CommunicationKDP.h | 27 enum CommandType { enum 179 void MakeRequestPacketHeader(CommandType request_type, 209 CommandType ExtractCommand(uint8_t first_packet_byte) const { in ExtractCommand() 211 return (CommandType)(first_packet_byte & eCommandTypeMask); in ExtractCommand() 218 bool SendRequestAndGetReply(const CommandType command,
|
H A D | CommunicationKDP.cpp | 52 void CommunicationKDP::MakeRequestPacketHeader(CommandType request_type, in MakeRequestPacketHeader() 65 const CommandType command, const PacketStreamType &request_packet, in SendRequestAndGetReply() 342 const CommandType command = KDP_CONNECT; in SendRequestConnect() 369 const CommandType command = KDP_REATTACH; in SendRequestReattach() 403 const CommandType command = KDP_VERSION; in SendRequestVersion() 489 const CommandType command = KDP_HOSTINFO; in SendRequestHostInfo() 519 const CommandType command = KDP_KERNELVERSION; in SendRequestKernelVersion() 535 const CommandType command = KDP_DISCONNECT; in SendRequestDisconnect() 553 const CommandType command = use_64 ? KDP_READMEM64 : KDP_READMEM; in SendRequestReadMemory() 592 const CommandType comman in SendRequestWriteMemory() [all...] |