Home
last modified time | relevance | path

Searched refs:CommandType (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lld/MachO/
H A DInputFiles.h321 template <class CommandType, class... Types>
322 std::vector<const CommandType *>
324 std::vector<const CommandType *> cmds; in findCommands()
330 auto *cmd = reinterpret_cast<const CommandType *>(p); in findCommands()
344 template <class CommandType = llvm::MachO::load_command, class... Types>
345 const CommandType *findCommand(const void *anyHdr, Types... types) { in findCommand()
346 std::vector<const CommandType *> cmds = in findCommand()
347 detail::findCommands<CommandType>(anyHdr, 1, types...); in findCommand()
351 template <class CommandType = llvm::MachO::load_command, class... Types>
352 std::vector<const CommandType *> findCommands(const void *anyHdr, in findCommands()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.h29 enum CommandType { enum
181 void MakeRequestPacketHeader(CommandType request_type,
211 CommandType ExtractCommand(uint8_t first_packet_byte) const { in ExtractCommand()
213 return (CommandType)(first_packet_byte & eCommandTypeMask); in ExtractCommand()
220 bool SendRequestAndGetReply(const CommandType command,
H A DCommunicationKDP.cpp342 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()
535 const CommandType command = KDP_DISCONNECT; in SendRequestDisconnect()
626 const CommandType command = (CommandType)command_byte; in SendRawRequest()
1173 const CommandType command = KDP_READREGS; in SendRequestReadRegisters()
1216 const CommandType command = KDP_WRITEREGS; in SendRequestWriteRegisters()
1241 const CommandType command = KDP_RESUMECPUS; in SendRequestResume()
1255 const CommandType command = in SendRequestBreakpoint()
[all …]