Searched refs:commands (Results 1 - 25 of 44) sorted by relevance

12

/haiku-fatelf/src/tests/kits/app/bpropertyinfo/
H A DPropertyFindMatchTest.cpp57 const uint32 *commands; local
69 wildcardCommand = (theProps[i].commands[0] == 0);
72 commands = wildcardCommandTests;
74 commands = theProps[i].commands;
82 if (commands[j] == 0) {
86 ExecFindMatch(propTest, theProps[i].name, commands[j], uniqueSpecifier,
97 ExecFindMatch(propTest, theProps[i].name, commands[j], specifiers[k],
H A DPropertyConstructionTest.cpp68 assert(prop1[i].commands[j] == prop2[i].commands[j]);
69 if (prop1[i].commands[j] == 0) {
/haiku-fatelf/src/bin/bash/lib/readline/examples/
H A Dfileman.c77 /* A structure which contains information on the commands this program
86 COMMAND commands[] = { variable
203 for (i = 0; commands[i].name; i++)
204 if (strcmp (name, commands[i].name) == 0)
205 return (&commands[i]);
297 while (name = commands[list_index].name)
316 commands. */
387 /* Print out help for ARG, or for all of the commands if ARG is
395 for (i = 0; commands[i].name; i++)
397 if (!*arg || (strcmp (arg, commands[
[all...]
/haiku-fatelf/src/bin/gdb/readline/examples/
H A Dfileman.c74 /* A structure which contains information on the commands this program
83 COMMAND commands[] = { variable
200 for (i = 0; commands[i].name; i++)
201 if (strcmp (name, commands[i].name) == 0)
202 return (&commands[i]);
294 while (name = commands[list_index].name)
313 commands. */
384 /* Print out help for ARG, or for all of the commands if ARG is
392 for (i = 0; commands[i].name; i++)
394 if (!*arg || (strcmp (arg, commands[
[all...]
/haiku-fatelf/src/libs/ncurses/test/
H A Dedit_field.c21 } commands[] = { variable in typeref:struct:__anon4871
164 * Display a temporary window listing the keystroke-commands we recognize.
176 WINDOW *data = newpad(2 + SIZEOF(commands), wide - 4);
185 for (n = 0; n < SIZEOF(commands); ++n) {
188 if ((name = form_request_name(commands[n].result)) == 0)
190 name = commands[n].help;
192 keyname(commands[n].code),
193 name != 0 ? name : commands[n].help);
291 for (n = 0; n < SIZEOF(commands); ++n) {
292 if (commands[
[all...]
/haiku-fatelf/src/apps/icon-o-matic/generic/command/
H A DCompoundCommand.h16 CompoundCommand(Command** commands,
H A DCompoundCommand.cpp14 CompoundCommand::CompoundCommand(Command** commands, argument
19 fCommands(commands),
/haiku-fatelf/docs/user/
H A Dapidoc.dox25 files. \ref commands describes the subset of Doxygen commands the Haiku API
26 documentation uses, and which commands are used in which situation. \ref
30 the formal requirements and the Doxygen commands. In addition, have a quick
167 \section commands Doxygen Commands
169 This section describes all the Doxygen commands that will be used in the
170 Haiku API documentation. As a rule, Doxygen commands start with a backslash
173 commands can be divided into several categories, which are described in the
176 \note This section does not discuss which commands you should actually use
179 commands
[all...]
/haiku-fatelf/src/kits/app/
H A DPropertyInfo.cpp101 for (int32 i = 0; i < 10 && fPropInfo[pi].commands[i] != 0; i++)
182 for (int32 i = 0; i < 10 && fPropInfo[pi].commands[i] != 0; i++) {
183 flatData.Write(&fPropInfo[pi].commands[i], sizeof(fPropInfo[pi].commands[i]));
296 fPropInfo[pi].commands[i] = tmpInt;
405 printf(" property commands types specifiers\n");
411 // commands
412 for (int32 i = 0; i < 10 && fPropInfo[pi].commands[i] != 0; i++) {
413 uint32 command = fPropInfo[pi].commands[i];
441 if (propertyInfo->commands[
[all...]
/haiku-fatelf/src/bin/network/wget/src/
H A Dinit.c95 /* List of recognized commands, each consisting of name, place and
106 } commands[] = { variable in typeref:struct:__anon4486
257 /* Look up CMDNAME in the commands[] and return its position in the
263 /* Use binary search for speed. Wget has ~100 commands, which
265 int lo = 0, hi = countof (commands) - 1;
270 int cmp = strcasecmp (cmdname, commands[mid].name);
696 /* Run commands[comind].action. */
701 assert (0 <= comind && ((size_t) comind) < countof (commands));
702 DEBUGP (("Setting %s (%s) to %s\n", com, commands[comind].name, val));
703 return commands[comin
[all...]
/haiku-fatelf/src/bin/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;
549 use this for breakpoint commands. Perhaps other actions will go here
587 struct command_line *commands;
317 struct command_line *commands; member in struct:breakpoint
583 struct command_line *commands; member in struct:bpstats
H A Dbreakpoint.c228 /* Are we executing breakpoint commands? */
596 free the storage, if we change the commands currently
600 error ("Can't use the \"commands\" command among a breakpoint's commands.");
611 char *tmpbuf = xstrprintf ("Type commands for when breakpoint %d is hit, one per line.",
616 free_command_lines (&b->commands);
617 b->commands = l;
1863 free_command_lines (&p->commands);
1887 if (bs->commands != NULL)
1888 tmp->commands
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/network/
H A Duserland_ipc.c85 net_command *commands; member in struct:__anon5763
221 command = cookie->commands + index;
450 net_command *commands; local
458 connection->area = create_area("net connection", (void *) &commands, B_ANY_ADDRESS,
466 memset(commands,0,NUM_COMMANDS * sizeof(net_command));
502 cookie->commands = commands;
503 cookie->buffer = (uint8 *)commands + CONNECTION_COMMAND_SIZE;
/haiku-fatelf/headers/os/app/
H A DPropertyInfo.h29 uint32 commands[10]; member in struct:property_info
/haiku-fatelf/src/bin/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++)
/haiku-fatelf/src/apps/icon-o-matic/
H A DMainWindow.cpp422 Command** commands = new Command*[3]; local
423 commands[0] = styleCommand;
424 commands[1] = pathCommand;
425 commands[2] = shapeCommand;
426 command = new CompoundCommand(commands, 3,
431 Command** commands = new Command*[2]; local
432 commands[0] = styleCommand;
433 commands[1] = shapeCommand;
434 command = new CompoundCommand(commands, 2,
439 Command** commands local
[all...]
/haiku-fatelf/src/bin/gdb/bfd/
H A Dmach-o.c242 if (mdata->commands[i].type == BFD_MACH_O_LC_SYMTAB)
244 bfd_mach_o_symtab_command *sym = &mdata->commands[i].command.symtab;
278 if (mdata->commands[i].type == BFD_MACH_O_LC_SYMTAB)
280 bfd_mach_o_symtab_command *sym = &mdata->commands[i].command.symtab;
282 if (bfd_mach_o_scan_read_symtab_symbols (abfd, &mdata->commands[i].command.symtab) != 0)
385 bfd_mach_o_load_command *cur = &mdata->commands[i];
424 bfd_mach_o_load_command *cur = &mdata->commands[i];
1573 if (mdata->commands[i].type == BFD_MACH_O_LC_SEGMENT)
1577 seg = &mdata->commands[i].command.segment;
1588 if (mdata->commands[
[all...]
H A Dmach-o.h455 bfd_mach_o_load_command *commands; member in struct:mach_o_data_struct
/haiku-fatelf/src/apps/icon-o-matic/gui/
H A DShapeListView.cpp407 ::Command** commands = new(std::nothrow) ::Command*[3]; local
409 commands[0] = stylesCommand;
410 commands[1] = pathsCommand;
411 commands[2] = shapesCommand;
413 CompoundCommand* command = new CompoundCommand(commands, 3,
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dfsh.cpp2112 printf("commands fsh understands:\n");
2113 for (cmd_entry **commands = fsh_commands; *commands; commands++) {
2114 cmd_entry *cmd = *commands;
2164 for (cmd_entry **commands = fsh_commands;
2165 !done && *commands;
2166 commands++) {
2167 cmd = *commands;
/haiku-fatelf/3rdparty/mmu_man/irc/Haiku/
H A Dplugin.py33 from supybot.commands import *
/haiku-fatelf/src/bin/less/
H A Dmain.c286 commands();
H A Dfuncs.h85 public void commands ();
/haiku-fatelf/src/bin/mail_utils/
H A Dspamdbm.cpp61 * simply sends scripting commands to the server (and starts it up if it isn't
225 * Added commands to train on spam and genuine e-mail messages passed
250 * Added a time delay to some quitting operations so that scripting commands
342 * Rearranged execution of commands, moving them to a separate looper
593 commands come in, which will stop the countdown. Needed to handle the case
606 /* Some globals for use with the looper which processes external commands
661 /* This array lists the scripting commands we can handle, in a format that the
666 /* *name; commands[10]; specifiers[10]; *usage; extra_data; ... */
853 {0, {0}, {0}, 0, 0, {}, {}, {}} /* End of list of property commands. */
1072 * series of scripting commands sen
[all...]
/haiku-fatelf/src/system/kernel/debug/
H A Ddebug.cpp368 // commands
733 // The message string contains a list of commands to be
771 // Indeed there are commands to execute.
781 const char* commands = strstr(commandBuffer, local
783 if (commands != NULL) {
784 commands += strlen(kKDLMessageCommandSeparator);
785 kprintf("initial commands: %s\n", commands);
786 evaluate_debug_command(commands);
860 // No commands ye
[all...]

Completed in 287 milliseconds

12