Home
last modified time | relevance | path

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

/freebsd/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/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectHelp.cpp91 auto command_name = command[0].ref(); in DoExecute() local
92 cmd_obj = m_interpreter.GetCommandObject(command_name, &matches); in DoExecute()
157 if (m_interpreter.GetAliasFullName(command_name, alias_full_name)) { in DoExecute()
175 CommandObject::LookupArgumentName(command_name); in DoExecute()
182 GenerateAdditionalHelpAvenuesMessage(&error_msg_stream, command_name, in DoExecute()
H A DCommandObjectCommands.cpp631 auto command_name = args[0].ref(); in DoExecute() local
632 cmd_obj = m_interpreter.GetCommandObject(command_name); in DoExecute()
641 if (m_interpreter.CommandExists(command_name)) { in DoExecute()
655 if (!m_interpreter.RemoveAlias(command_name)) { in DoExecute()
656 if (m_interpreter.AliasExists(command_name)) in DoExecute()
708 auto command_name = args[0].ref(); in DoExecute() local
709 if (!m_interpreter.CommandExists(command_name)) { in DoExecute()
714 &error_msg_stream, command_name, llvm::StringRef(), llvm::StringRef(), in DoExecute()
720 if (!m_interpreter.RemoveCommand(command_name)) { in DoExecute()
/freebsd/usr.sbin/cpucontrol/
H A Dcpucontrol.c215 const char *command_name; in do_msr() local
284 command_name = "RDMSR"; in do_msr()
288 command_name = "WRMSR"; in do_msr()
292 command_name = "MSRSBIT"; in do_msr()
296 command_name = "MSRCBIT"; in do_msr()
309 WARN(0, "ioctl(%s, CPUCTL_%s (%#x))", dev, command_name, msr); in do_msr()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStructuredDataPlugin.cpp56 auto command_name = "structured-data"; in InitializeBasePluginForDebugger() local
60 parent_command->LoadSubCommand(command_name, command_sp); in InitializeBasePluginForDebugger()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandAlias.cpp144 llvm::StringRef command_name = m_underlying_command_sp->GetCommandName(); in GetAliasExpansion() local
145 help_string.Printf("'%*s", (int)command_name.size(), command_name.data()); in GetAliasExpansion()
H A DCommandInterpreter.cpp1977 llvm::StringRef command_name = cmd_obj ? cmd_obj->GetCommandName() : "<not found>"; in HandleCommand() local
1978 LLDB_LOGF(log, "HandleCommand, cmd_obj : '%s'", command_name.str().c_str()); in HandleCommand()
2943 llvm::StringRef command_name = pair.first; in FindCommandsForApropos() local
2950 if (command_name.contains_insensitive(search_word) || in FindCommandsForApropos()
2954 commands_found.AppendString(command_name); in FindCommandsForApropos()
2964 (command_name + " " + subcommand_name).str(); in FindCommandsForApropos()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp545 const char *command_name, lldb::CommandOverrideCallback callback, in SetCommandOverrideCallback() argument
547 LLDB_INSTRUMENT_VA(this, command_name, callback, baton); in SetCommandOverrideCallback()
549 if (command_name && command_name[0] && IsValid()) { in SetCommandOverrideCallback()
550 llvm::StringRef command_name_str = command_name; in SetCommandOverrideCallback()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h268 bool SetCommandOverrideCallback(const char *command_name,
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-extensions.swig271 def command(command_name=None, doc=None):
277 command = "command script add -f %s.%s %s" % (function.__module__, function.__name__, command_name or function.__name__)
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1351 auto command_name = "darwin-log"; in DebuggerInitialize()
1353 bool result = parent_command->LoadSubCommand(command_name, command_sp); in DebuggerInitialize()
1355 auto command_name = "darwin-log"; DebuggerInitialize() local