| /openbsd-src/gnu/llvm/lldb/examples/python/ |
| H A D | lldb_module_utils.py | 11 command_name = "dump-line-tables" variable in DumpLineTables 18 prog=self.command_name, 96 command_name = "dump-files" variable in DumpFiles 115 prog = self.command_name, 187 DumpLineTables.command_name)) 189 'command script add -o -c %s.DumpFiles %s' % (__name__, DumpFiles.command_name)) 190 print('The "%s" and "%s" commands have been installed.' % (DumpLineTables.command_name, 191 DumpFiles.command_name))
|
| /openbsd-src/gnu/usr.bin/cvs/src/ |
| H A D | main.c | 26 char *command_name; variable 655 command_name = argv[0]; 658 if (cm->nick1 && !strcmp (command_name, cm->nick1)) 660 if (cm->nick2 && !strcmp (command_name, cm->nick2)) 662 if (!strcmp (command_name, cm->fullname)) 668 fprintf (stderr, "Unknown command: `%s'\n\n", command_name); 672 command_name = cm->fullname; /* Global pointer for later use */ 704 if (strcmp (command_name, "kserver") == 0) 709 command_name = "server"; 715 if (strcmp (command_name, "pserver") == 0) [all …]
|
| H A D | error.c | 131 if (command_name && *command_name) 136 cvs_outerr (command_name, 0);
|
| H A D | release.c | 97 command_name); 219 command_name);
|
| H A D | classify.c | 262 if (strcmp (command_name, "update") == 0) 332 if (strcmp (command_name, "update") == 0)
|
| H A D | client.c | 1076 if (strcmp (command_name, "export") != 0) 1223 else if (strcmp (command_name, "export") == 0) 1318 if (strcmp (command_name, "export") != 0) 2124 if (strcmp (command_name, "export") != 0) 2156 if (!strcmp (command_name, "commit")) 2346 if (strcmp (command_name, "export") == 0) 2371 if (strcmp (command_name, "export") == 0) 2426 if (strcmp (command_name, "export") == 0) 2467 if (strcmp (command_name, "export") == 0) 2535 if (strcmp (command_name, "export") == 0) [all …]
|
| H A D | annotate.c | 55 is_rannotate = (strcmp(command_name, "rannotate") == 0);
|
| H A D | checkout.c | 123 if (strcmp (command_name, "export") == 0) 170 command_name);
|
| H A D | update.c | 188 command_name); 866 if (strcmp (command_name, "export") == 0) 1106 cvs_output (command_name, 0); 1515 if (strcmp (command_name, "update") == 0) 1855 if (strcmp (command_name, "update") == 0)
|
| H A D | edit.c | 240 if (strcmp (command_name, "release") != 0) 252 if (strcmp (command_name, "release") == 0)
|
| H A D | tag.c | 110 is_rtag = (strcmp (command_name, "rtag") == 0); 153 command_name);
|
| H A D | root.c | 779 char *command_name = "parse_cvsroot"; /* XXX is this used??? */ variable
|
| H A D | patch.c | 89 command_name);
|
| H A D | server.c | 3743 command_name = "rlog"; 3787 command_name = "rtag"; 3936 command_name = "rannotate"; 3992 do_cvs_command ((strcmp (command_name, "export") == 0) ? 4002 command_name = "export";
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectHelp.cpp | 102 auto command_name = command[0].ref(); in DoExecute() local 103 cmd_obj = m_interpreter.GetCommandObject(command_name, &matches); in DoExecute() 168 if (m_interpreter.GetAliasFullName(command_name, alias_full_name)) { in DoExecute() 186 CommandObject::LookupArgumentName(command_name); in DoExecute() 193 GenerateAdditionalHelpAvenuesMessage(&error_msg_stream, command_name, in DoExecute()
|
| H A D | CommandObjectCommands.cpp | 666 auto command_name = args[0].ref(); in DoExecute() local 667 cmd_obj = m_interpreter.GetCommandObject(command_name); in DoExecute() 676 if (m_interpreter.CommandExists(command_name)) { in DoExecute() 690 if (!m_interpreter.RemoveAlias(command_name)) { in DoExecute() 691 if (m_interpreter.AliasExists(command_name)) in DoExecute() 756 auto command_name = args[0].ref(); in DoExecute() local 757 if (!m_interpreter.CommandExists(command_name)) { in DoExecute() 762 &error_msg_stream, command_name, llvm::StringRef(), llvm::StringRef(), in DoExecute() 768 if (!m_interpreter.RemoveCommand(command_name)) { in DoExecute()
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | StructuredDataPlugin.cpp | 56 auto command_name = "structured-data"; in InitializeBasePluginForDebugger() local 60 parent_command->LoadSubCommand(command_name, command_sp); in InitializeBasePluginForDebugger()
|
| /openbsd-src/gnu/usr.bin/texinfo/info/ |
| H A D | infodoc.c | 1155 char *command_name; 1157 command_name = read_function_name ((char *) _("Where is command: "), window); 1159 if (!command_name) 1165 if (*command_name) 1169 command = named_function (command_name); 1180 command_name, NULL); 1187 command_name, location); 1191 command_name, location); 1196 command_name, NULL); 1199 free (command_name);
|
| /openbsd-src/gnu/llvm/lldb/source/Interpreter/ |
| H A D | CommandAlias.cpp | 143 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 D | CommandInterpreter.cpp | 1989 llvm::StringRef command_name = cmd_obj ? cmd_obj->GetCommandName() : "<not found>"; in HandleCommand() local 1990 LLDB_LOGF(log, "HandleCommand, cmd_obj : '%s'", command_name.str().c_str()); in HandleCommand() 2926 llvm::StringRef command_name = pair.first; in FindCommandsForApropos() local 2933 if (command_name.contains_insensitive(search_word) || in FindCommandsForApropos() 2937 commands_found.AppendString(command_name); in FindCommandsForApropos() 2947 (command_name + " " + subcommand_name).str(); in FindCommandsForApropos()
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBCommandInterpreter.cpp | 523 const char *command_name, lldb::CommandOverrideCallback callback, in SetCommandOverrideCallback() argument 525 LLDB_INSTRUMENT_VA(this, command_name, callback, baton); in SetCommandOverrideCallback() 527 if (command_name && command_name[0] && IsValid()) { in SetCommandOverrideCallback() 528 llvm::StringRef command_name_str = command_name; in SetCommandOverrideCallback()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/API/ |
| H A D | SBCommandInterpreter.h | 217 bool SetCommandOverrideCallback(const char *command_name,
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | CommunicationKDP.cpp | 733 const char *command_name = GetCommandAsCString(command); in DumpPacket() local 734 if (command_name) { in DumpPacket() 737 IsRunning(), is_reply ? "<--" : "-->", command_name, in DumpPacket()
|
| /openbsd-src/gnu/llvm/lldb/bindings/python/ |
| H A D | python-extensions.swig | 271 def command(command_name=None, doc=None): 277 …nd script add -f %s.%s %s" % (function.__module__, function.__name__, command_name or function.__n…
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.cpp | 1356 auto command_name = "darwin-log"; in DebuggerInitialize() local 1358 bool result = parent_command->LoadSubCommand(command_name, command_sp); in DebuggerInitialize()
|