Searched refs:CommandType (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/llvm/lld/MachO/ |
| H A D | InputFiles.h | 324 template <class CommandType, class... Types> 325 std::vector<const CommandType *> 327 std::vector<const CommandType *> cmds; in findCommands() 333 auto *cmd = reinterpret_cast<const CommandType *>(p); in findCommands() 347 template <class CommandType = llvm::MachO::load_command, class... Types> 348 const CommandType *findCommand(const void *anyHdr, Types... types) { in findCommand() 349 std::vector<const CommandType *> cmds = in findCommand() 350 detail::findCommands<CommandType>(anyHdr, 1, types...); in findCommand() 354 template <class CommandType = llvm::MachO::load_command, class... Types> 355 std::vector<const CommandType *> findCommands(const void *anyHdr, in findCommands() [all …]
|
| /openbsd-src/gnu/llvm/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 command = use_64 ? KDP_WRITEMEM64 : KDP_WRITEMEM; in SendRequestWriteMemory() [all …]
|