Searched refs:commands (Results 26 - 50 of 154) sorted by relevance

1234567

/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBBreakpointName.h91 void SetCommandLineCommands(lldb::SBStringList &commands);
93 bool GetCommandLineCommands(lldb::SBStringList &commands);
H A DSBBreakpoint.h100 void SetCommandLineCommands(SBStringList &commands);
102 bool GetCommandLineCommands(SBStringList &commands);
/freebsd-12-stable/crypto/openssl/apps/
H A Dprogs.pl17 my %commands = ();
34 $commands{$1} = 1;
39 @ARGV = sort keys %commands;
/freebsd-12-stable/usr.bin/systat/
H A Dmain.c89 SLIST_HEAD(, cmdentry) commands;
101 SLIST_INSERT_HEAD(&commands, cmd, link);
126 SLIST_INSERT_HEAD(&commands, cmd, link);
134 SLIST_INSERT_HEAD(&commands, cmd, link);
147 SLIST_INIT(&commands);
226 SLIST_FOREACH (cmd, &commands, link)
/freebsd-12-stable/usr.sbin/mlxcontrol/
H A Dcommand.c63 } commands[] = { variable in typeref:struct:__anon17492
138 for (i = 0; commands[i].cmd != NULL; i++)
139 if (!strcmp(argv[0], commands[i].cmd))
140 return(commands[i].func(argc, argv));
154 for (i = 0; commands[i].cmd != NULL; i++)
155 if (!strcmp(argv[1], commands[i].cmd)) {
156 fprintf(stderr, "%s\n", commands[i].text);
163 fprintf(stderr, "Valid commands are:\n");
164 for (i = 0; commands[i].cmd != NULL; i++)
165 fprintf(stderr, " %-20s %s\n", commands[
[all...]
/freebsd-12-stable/lib/libc/db/test/btree.tests/
H A Dmain.c87 cmd_table commands[] = { variable
219 for (i = 0; commands[i].cmd != NULL; i++)
220 if (strncmp(commands[i].cmd, argv[0],
221 strlen(commands[i].cmd)) == 0)
224 if (commands[i].cmd == NULL) {
230 if (commands[i].nargs != argc - 1) {
231 (void)fprintf(stderr, "usage: %s\n", commands[i].usage);
235 if (recno && commands[i].rconv) {
241 (*commands[i].func)(db, argv);
436 for (i = 0; commands[
[all...]
/freebsd-12-stable/crypto/heimdal/kadmin/
H A Dkadmin.c35 #include "kadmin-commands.h"
102 sl_slc_help(commands, argc, argv);
266 ret = sl_command (commands, argc, argv);
275 ret = sl_command_loop(commands, "kadmin> ", NULL);
/freebsd-12-stable/contrib/netbsd-tests/lib/libcurses/slave/
H A Dcommands.c1 /* $NetBSD: commands.c,v 1.4 2011/09/15 11:46:19 blymn Exp $ */
60 if (strcasecmp(func, commands[i].name) == 0) {
62 commands[i].func(nargs, args);
/freebsd-12-stable/usr.bin/telnet/
H A DMakefile10 SRCS= commands.c main.c network.c ring.c sys_bsd.c \
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointLocation.cpp271 void SBBreakpointLocation::SetCommandLineCommands(SBStringList &commands) { argument
273 (lldb::SBStringList &), commands);
278 if (commands.GetSize() == 0)
284 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone));
289 bool SBBreakpointLocation::GetCommandLineCommands(SBStringList &commands) { argument
291 (lldb::SBStringList &), commands);
300 commands.AppendList(command_list);
H A DSBBreakpointName.cpp472 void SBBreakpointName::SetCommandLineCommands(SBStringList &commands) { argument
474 (lldb::SBStringList &), commands);
479 if (commands.GetSize() == 0)
486 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone));
492 bool SBBreakpointName::GetCommandLineCommands(SBStringList &commands) { argument
494 (lldb::SBStringList &), commands);
504 commands.AppendList(command_list);
/freebsd-12-stable/crypto/heimdal/lib/gssapi/
H A DMakefile.am281 gss-commands.h gss-commands.c
324 nodist_gsstool_SOURCES = gss-commands.c gss-commands.h
332 gss-commands.c gss-commands.h: gss-commands.in
333 $(SLC) $(srcdir)/gss-commands.in
335 $(gsstool_OBJECTS): gss-commands.h
347 gss-commands
[all...]
H A Dgsstool.c47 #include <gss-commands.h>
225 sl_slc_help(commands, argc, argv);
254 return sl_command (commands, argc, argv);
/freebsd-12-stable/crypto/heimdal/lib/hx509/
H A DMakefile.am150 hxtool-commands.c hxtool-commands.h: hxtool-commands.in $(SLC)
151 $(SLC) $(srcdir)/hxtool-commands.in
154 nodist_hxtool_SOURCES = hxtool-commands.c hxtool-commands.h
156 $(hxtool_OBJECTS): hxtool-commands.h
174 hxtool-commands.c hxtool-commands.h *.tmp \
310 hxtool-commands
[all...]
/freebsd-12-stable/contrib/gdb/gdb/
H A Dbreakpoint.h130 implement the "catch fork", "catch vfork" and "catch exec" commands
140 commands for C++ exception handling. */
193 commands to execute when the breakpoint is hit, and so forth.
280 /* Note that the ->silent field is not currently used by any commands
318 struct command_line *commands;
548 use this for breakpoint commands. Perhaps other actions will go here
586 struct command_line *commands;
317 struct command_line *commands; member in struct:breakpoint
582 struct command_line *commands; member in struct:bpstats
/freebsd-12-stable/contrib/libstdc++/scripts/
H A Dmake_graphs.py4 import commands namespace
57 so = commands.getstatusoutput(cmd_str)
/freebsd-12-stable/stand/forth/
H A DMakefile30 FILES+= menu-commands.4th
/freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBBreakpoint.i202 void SetCommandLineCommands(SBStringList &commands);
204 bool GetCommandLineCommands(SBStringList &commands);
/freebsd-12-stable/usr.bin/lastcomm/tests/
H A Dvalues.sh29 echo Running commands. This should not take more than 30s.
/freebsd-12-stable/contrib/gdb/gdb/mi/
H A Dmi-cmds.c32 static void build_table (struct mi_cmd *commands);
39 { "break-commands", { NULL, 0 }, NULL, NULL },
230 build_table (struct mi_cmd *commands) argument
239 for (command = commands; command->name != 0; command++)
/freebsd-12-stable/crypto/heimdal/lib/roken/
H A Drkpty.c75 static struct command *commands, **next = &commands; variable in typeref:struct:command
212 for (c = commands; c != NULL; c = c->next) {
/freebsd-12-stable/usr.bin/usbhidaction/
H A Dusbhidaction.c69 static struct command *commands; variable in typeref:struct:command
158 commands = parse_conf(conf, repd, reportid, ignore);
202 for (cmd = commands; cmd; cmd = cmd->next) {
246 freecommands(commands);
247 commands = cmds;
/freebsd-12-stable/crypto/heimdal/kuser/
H A DMakefile.in115 nodist_kcc_OBJECTS = kcc-commands.$(OBJEXT)
136 nodist_kdigest_OBJECTS = kdigest-commands.$(OBJEXT)
483 nodist_kcc_SOURCES = kcc-commands.c
485 nodist_kdigest_SOURCES = kdigest-commands.c
495 kdigest-commands.h kdigest-commands.c \
496 kcc-commands.h kcc-commands.c
511 kuser_locl.h kcc-commands.in kdigest-commands
[all...]
/freebsd-12-stable/bin/chio/
H A Dchio.c102 /* Valid commands. */
103 static const struct changer_command commands[] = { variable in typeref:struct:changer_command
163 for (i = 0; commands[i].cc_name != NULL; ++i)
164 if (strcmp(*argv, commands[i].cc_name) == 0)
166 if (commands[i].cc_name == NULL) {
168 for (i = 0; commands[i].cc_name != NULL; ++i)
169 if (strncmp(*argv, commands[i].cc_name,
174 if (commands[i].cc_name == NULL)
177 exit ((*commands[i].cc_handler)(commands[
[all...]
/freebsd-12-stable/sys/dev/mps/
H A Dmps_sas.h63 TAILQ_HEAD(, mps_command) commands; member in struct:mpssas_target

Completed in 328 milliseconds

1234567