Home
last modified time | relevance | path

Searched refs:command_name (Results 1 – 12 of 12) sorted by relevance

/freebsd-12.1/contrib/diff/lib/
H A Dversion-etc.c46 const char *command_name, const char *package, in version_etc_va() argument
66 if (command_name) in version_etc_va()
67 fprintf (stream, "%s (%s) %s\n", command_name, package, version); in version_etc_va()
169 const char *command_name, const char *package, in version_etc() argument
175 version_etc_va (stream, command_name, package, version, authors); in version_etc()
H A Dversion-etc.h29 const char *command_name, const char *package,
33 const char *command_name, const char *package,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectHelp.cpp106 auto command_name = command[0].ref; in DoExecute() local
107 cmd_obj = m_interpreter.GetCommandObject(command_name, &matches); in DoExecute()
174 if (m_interpreter.GetAliasFullName(command_name, alias_full_name)) { in DoExecute()
192 CommandObject::LookupArgumentName(command_name); in DoExecute()
199 GenerateAdditionalHelpAvenuesMessage(&error_msg_stream, command_name, in DoExecute()
H A DCommandObjectCommands.cpp808 auto command_name = args[0].ref; in DoExecute() local
809 cmd_obj = m_interpreter.GetCommandObject(command_name); in DoExecute()
819 if (m_interpreter.CommandExists(command_name)) { in DoExecute()
834 if (!m_interpreter.RemoveAlias(command_name)) { in DoExecute()
835 if (m_interpreter.AliasExists(command_name)) in DoExecute()
891 auto command_name = args[0].ref; in DoExecute() local
892 if (!m_interpreter.CommandExists(command_name)) { in DoExecute()
897 &error_msg_stream, command_name, llvm::StringRef(), llvm::StringRef(), in DoExecute()
904 if (!m_interpreter.RemoveCommand(command_name)) { in DoExecute()
H A DCommandObjectMultiword.cpp250 const char *command_name = pos->first.c_str(); in AproposAllSubCommands() local
254 complete_command_name << prefix << " " << command_name; in AproposAllSubCommands()
/freebsd-12.1/usr.sbin/cpucontrol/
H A Dcpucontrol.c216 const char *command_name; in do_msr() local
285 command_name = "RDMSR"; in do_msr()
289 command_name = "WRMSR"; in do_msr()
293 command_name = "MSRSBIT"; in do_msr()
297 command_name = "MSRCBIT"; in do_msr()
310 WARN(0, "ioctl(%s, CPUCTL_%s (%lu))", dev, command_name, command); in do_msr()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DStructuredDataPlugin.cpp57 auto command_name = "structured-data"; in InitializeBasePluginForDebugger() local
61 parent_command->LoadSubCommand(command_name, command_sp); in InitializeBasePluginForDebugger()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandAlias.cpp143 llvm::StringRef command_name = m_underlying_command_sp->GetCommandName(); in GetAliasExpansion() local
144 help_string.Printf("'%*s", (int)command_name.size(), command_name.data()); in GetAliasExpansion()
H A DCommandInterpreter.cpp1719 llvm::StringRef command_name = cmd_obj ? cmd_obj->GetCommandName() : "<not found>"; in HandleCommand() local
1720 log->Printf("HandleCommand, cmd_obj : '%s'", command_name.str().c_str()); in HandleCommand()
2622 llvm::StringRef command_name = pos->first; in FindCommandsForApropos() local
2629 if (command_name.contains_lower(search_word) || in FindCommandsForApropos()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBCommandInterpreter.cpp529 const char *command_name, lldb::CommandOverrideCallback callback, in SetCommandOverrideCallback() argument
531 if (command_name && command_name[0] && IsValid()) { in SetCommandOverrideCallback()
532 llvm::StringRef command_name_str = command_name; in SetCommandOverrideCallback()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBCommandInterpreter.h184 bool SetCommandOverrideCallback(const char *command_name,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1433 auto command_name = "darwin-log"; in DebuggerInitialize() local
1435 bool result = parent_command->LoadSubCommand(command_name, command_sp); in DebuggerInitialize()