Searched refs:command (Results 1 - 25 of 761) sorted by relevance

1234567891011>>

/openbsd-current/bin/csh/
H A Dextern.h39 void dosource(Char **, struct command *);
57 void dodirs(Char **, struct command *);
61 void dochngd(Char **, struct command *);
63 void dopushd(Char **, struct command *);
64 void dopopd(Char **, struct command *);
71 void Dfix(struct command *);
84 void doexec(Char **, struct command *);
85 void dohash(Char **, struct command *);
86 void dounhash(Char **, struct command *);
87 void dowhich(Char **, struct command *);
[all...]
/openbsd-current/gnu/usr.bin/perl/regen/
H A Duconfig_h.pl22 my $command = 'sh ./config_h.SH';
23 system $command and die "`$command` failed, \$?=$?";
/openbsd-current/gnu/llvm/lldb/packages/Python/lldbsuite/test_event/
H A Dbuild_exception.py7 self.command = seven.join_for_shell(called_process_error.cmd)
11 return self.format_build_error(self.command, self.build_error)
14 def format_build_error(command, command_output):
16 command, command_output)
/openbsd-current/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dbench.py7 You need to hand edit 'benches' to modify/change the command lines passed to the
43 """Read the items from 'benches' and run the command line one by one."""
63 command = item.replace('%E',
65 command = command.replace('%X', '-x "%s"' %
67 print("Running %s" % (command))
68 os.system(command)
/openbsd-current/gnu/llvm/clang/utils/analyzer/
H A Dreducer.pl7 die "$prog <code file> <error string> [optional command]\n" if ($#ARGV < 0);
25 my $command;
26 if (scalar(@ARGV) > 0) { $command = \@ARGV; }
29 $command = [$compiler, "-fsyntax-only", "-Wfatal-errors", "-Wno-deprecated-declarations", "-Wimplicit-function-declaration"];
31 push @$command, $srcFile;
32 my $commandStr = "@$command";
41 my \$command = "$commandStr > $reduceOut 2>&1";
42 system(\$command);
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.gdb/
H A Dselftest.exp52 set command "step"
56 set command "step"
60 set command "step"
64 set command "step"
68 set command "step"
72 set command "step"
76 set command "step"
80 set command "step"
84 set command "step"
88 set command "ste
[all...]
/openbsd-current/gnu/llvm/lldb/examples/plugins/commands/
H A Dfooplugin.cpp10 An example plugin for LLDB that provides a new foo command with a child
14 by typing plugin load foo.dylib at the LLDB command line
27 virtual bool DoExecute(lldb::SBDebugger debugger, char **command, argument
29 if (command) {
30 const char *arg = *command;
33 arg = *(++command);
/openbsd-current/usr.sbin/nsd/
H A Dpopen3.h2 * popen3.h -- execute a command and connect stdin, stdout and stderr
16 * Execute a command and connect stdin, stdout and stderr of the process to
22 pid_t popen3(char *const *command,
/openbsd-current/gnu/usr.bin/cvs/vms/
H A Dstartserver.c8 static char *command; variable
23 command = xmalloc (strlen (cvs_server)
26 sprintf(command, "%s server", cvs_server);
48 command, 0);
55 free (command);
/openbsd-current/gnu/llvm/llvm/utils/lit/lit/llvm/
H A Dsubst.py17 command = config.lit_config.params.get(self.name)
18 if command is None:
20 command = lit.util.which(self.name, dirs)
21 if not command:
25 command += ' -verify-machineinstrs'
26 return command
38 def __init__(self, key, command=None, pre=r'.-^/\<', post='-.', verbatim=False,
44 command: The command to substitute when the key is matched. By default,
78 self.command
[all...]
/openbsd-current/regress/lib/libc/popen/
H A Dpopen.c50 char *buffer, command[PATH_MAX]; local
60 (void)snprintf(command, sizeof(command), "%s >%s",
62 if ((pipe = popen(command, "w")) == NULL)
71 (void)snprintf(command, sizeof(command), "%s %s",
73 if ((pipe = popen(command, "r")) == NULL)
/openbsd-current/gnu/llvm/lldb/source/Commands/
H A DCommandObjectLanguage.h22 bool DoExecute(Args &command, CommandReturnObject &result);
/openbsd-current/gnu/usr.bin/perl/
H A Dregen.pl18 my @command = ($^X, '-I.', $pl, @ARGV);
19 print "$tap@command\n";
20 system @command
21 and die "@command failed: $?"
/openbsd-current/bin/mt/
H A Dmt.h37 int rmtioctl(int command, int count);
/openbsd-current/gnu/llvm/lldb/examples/python/
H A Dstep_and_print.py8 def __call__(self, debugger, command, exe_ctx, result):
9 # Set the command to synchronous so the step will complete
16 debugger.HandleCommand("frame variable %s"%(command))
21 return "Does a step-over then runs frame variable passing the command args to it\n"
24 debugger.HandleCommand("command script add -o -c step_and_print.StepAndPrint sap")
/openbsd-current/gnu/usr.bin/binutils/gdb/cli/
H A Dcli-interp.c37 static enum gdb_rc safe_execute_command (struct ui_out *uiout, char *command,
41 char *command; member in struct:captured_execute_command_args
122 execute_command (args->command, args->from_tty);
127 safe_execute_command (struct ui_out *uiout, char *command, int from_tty) argument
130 args.command = command;
/openbsd-current/gnu/llvm/clang/tools/scan-build-py/lib/libscanbuild/
H A Dcompilation.py59 def split_command(command):
60 """ Returns a value when the command is a compilation, None otherwise.
71 result.compiler = compiler_language(command)
78 args = iter(command[1:])
129 def compiler_language(command):
130 """ A predicate to decide the command is a compiler call or not.
136 if command:
137 executable = os.path.basename(command[0])
/openbsd-current/gnu/usr.bin/cvs/emx/
H A Dstartserver.c22 static char *command; variable
40 command = xmalloc (strlen (cvs_server)
43 sprintf (command, "%s server", cvs_server);
65 command, 0);
72 free (command);
/openbsd-current/gnu/usr.bin/cvs/windows-NT/
H A Dstartserver.c27 char *command; local
35 command = xmalloc (strlen (cvs_server)
38 sprintf (command, "%s -d %s server", cvs_server, server_cvsroot);
52 command,
60 free (command);
/openbsd-current/usr.bin/libtool/LT/
H A DExec.pm62 $self->command("compile", @l);
67 $self->command("execute", @l);
72 $self->command("install", @l);
77 $self->command("link", @l);
119 sub command($self, $mode, @l) subroutine
/openbsd-current/gnu/llvm/lldb/packages/Python/lldbsuite/test/tools/intelpt/
H A Dintelpt_testcase.py22 # It also contains many functions that can test both the SB API or the command line version
89 command = "thread trace start"
91 command += " " + str(thread.GetIndexID())
93 command += " -s " + str(iptTraceSize)
95 command += " --tsc"
97 command += " --psb-period " + str(psbPeriod)
98 self.expect(command, error=error, substrs=substrs)
110 command = "process trace start"
112 command += " -l " + str(processBufferSizeLimit)
114 command
[all...]
/openbsd-current/gnu/llvm/lldb/source/Utility/
H A DArgs.cpp68 // Trims all whitespace that can separate command line arguments from the left
76 // command string, processing quotes and backslashes in a shell-like manner.
81 ParseSingleArgument(llvm::StringRef command) { argument
89 // Since we can have multiple quotes that form a single command in a command
98 size_t regular = command.find_first_of(" \t\r\"'`\\");
99 arg += command.substr(0, regular);
100 command = command.substr(regular);
102 if (command
169 Args(llvm::StringRef command) argument
248 SetCommandString(llvm::StringRef command) argument
[all...]
/openbsd-current/gnu/llvm/clang/tools/clang-rename/
H A Dclang-rename.py14 For python3 use the following command (note the change from :pyf to :py3f)
47 command = [binary,
53 p = subprocess.Popen(command,
62 vim.command("checktime")
/openbsd-current/usr.sbin/bgplgd/
H A Dbgplgd.c58 ctx->command = &cmds[i];
103 for (i = 0; ctx->command->args[i] != NULL; i++)
104 argv[argc++] = ctx->command->args[i];
107 ctx->command->barenbr);
114 if (ctx->command->content_type == NULL)
117 printf("Content-type: %s\r\n\r\n", ctx->command->content_type);
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/config/
H A Dm68k-emc.exp4 proc gdb_emclaptop_command { command } {
14 remote_send $dos_host "${command}\n";

Completed in 393 milliseconds

1234567891011>>