Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 1841) sorted by relevance

12345678910>>...74

/openbsd-src/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-src/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 "step"
[all …]
/openbsd-src/gnu/usr.bin/texinfo/makeinfo/
H A Dlang.c847 if (strcmp (command, "udotaccent") == 0) /* underdot */ in cm_accent()
852 if (strcmp (command, "=") == 0) /* macron */ in cm_accent()
854 else if (strcmp (command, "H") == 0) /* Hungarian umlaut */ in cm_accent()
856 else if (strcmp (command, "dotaccent") == 0) /* overdot */ in cm_accent()
858 else if (strcmp (command, "ringaccent") == 0) /* ring */ in cm_accent()
860 else if (strcmp (command, "tieaccent") == 0) /* long tie */ in cm_accent()
862 else if (strcmp (command, "u") == 0) /* breve */ in cm_accent()
864 else if (strcmp (command, "ubaraccent") == 0) /* underbar */ in cm_accent()
866 else if (strcmp (command, "v") == 0) /* hacek/check */ in cm_accent()
888 command); in cm_accent_generic()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DArgs.cpp81 ParseSingleArgument(llvm::StringRef command) { in ParseSingleArgument() argument
98 size_t regular = command.find_first_of(" \t\r\"'`\\"); in ParseSingleArgument()
99 arg += command.substr(0, regular); in ParseSingleArgument()
100 command = command.substr(regular); in ParseSingleArgument()
102 if (command.empty()) in ParseSingleArgument()
105 char special = command.front(); in ParseSingleArgument()
106 command = command.drop_front(); in ParseSingleArgument()
109 if (command.empty()) { in ParseSingleArgument()
116 if (strchr(" \t\\'\"`", command.front()) == nullptr) in ParseSingleArgument()
119 arg += command.front(); in ParseSingleArgument()
[all …]
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/tools/intelpt/
H A Dintelpt_testcase.py89 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 += " --tsc"
116 command += " --psb-period " + str(psbPeriod)
[all …]
/openbsd-src/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, argument
78 self.command = command if command is not None else FindTool(key)
111 if isinstance(self.command, FindTool):
112 command_str = self.command.resolve(config, search_dirs)
[all …]
/openbsd-src/gnu/usr.bin/binutils/bfd/
H A Dmach-o.c238 bfd_mach_o_symtab_command *sym = &mdata->commands[i].command.symtab;
274 bfd_mach_o_symtab_command *sym = &mdata->commands[i].command.symtab;
276 if (bfd_mach_o_scan_read_symtab_symbols (abfd, &mdata->commands[i].command.symtab) != 0)
384 bfd_mach_o_segment_command *seg = &cur->command.segment;
658 bfd_mach_o_scan_write_symtab_symbols (abfd, command) in bfd_mach_o_scan_write_symtab_symbols() argument
660 bfd_mach_o_load_command *command;
662 bfd_mach_o_symtab_command *sym = &command->command.symtab;
958 bfd_mach_o_scan_write_thread (abfd, command) in bfd_mach_o_scan_write_thread() argument
960 bfd_mach_o_load_command *command;
962 bfd_mach_o_thread_command *cmd = &command->command.thread;
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/
H A Dmach-o.c174 bfd_mach_o_symtab_command *sym = &mdata->commands[i].command.symtab; in bfd_mach_o_count_symbols()
207 bfd_mach_o_symtab_command *sym = &mdata->commands[i].command.symtab; in bfd_mach_o_canonicalize_symtab()
209 if (bfd_mach_o_scan_read_symtab_symbols (abfd, &mdata->commands[i].command.symtab) != 0) in bfd_mach_o_canonicalize_symtab()
313 bfd_mach_o_load_command *command) in bfd_mach_o_scan_write_thread() argument
315 bfd_mach_o_thread_command *cmd = &command->command.thread; in bfd_mach_o_scan_write_thread()
321 BFD_ASSERT ((command->type == BFD_MACH_O_LC_THREAD) in bfd_mach_o_scan_write_thread()
322 || (command->type == BFD_MACH_O_LC_UNIXTHREAD)); in bfd_mach_o_scan_write_thread()
329 BFD_ASSERT (cmd->flavours[i].offset == (command->offset + offset + 8)); in bfd_mach_o_scan_write_thread()
334 bfd_seek (abfd, command->offset + offset, SEEK_SET); in bfd_mach_o_scan_write_thread()
371 bfd_mach_o_scan_write_segment (bfd *abfd, bfd_mach_o_load_command *command) in bfd_mach_o_scan_write_segment() argument
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Iterator/
H A DProcess.pm29 command => ['python', 'setup.py', 'test'],
51 command => \@command_to_execute
119 my @command = @{ delete $args->{command} || [] }
120 or die "Must supply a command to execute";
122 $self->{command} = [@command];
131 $setup->(@command);
155 @command
158 die "Could not execute (@command)
[all...]
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectThreadUtil.cpp37 bool CommandObjectIterateOverThreads::DoExecute(Args &command, in DoExecute() argument
42 if (command.GetArgumentCount() == 0) { in DoExecute()
47 } else if (command.GetArgumentCount() == 1) { in DoExecute()
48 all_threads = ::strcmp(command.GetArgumentAtIndex(0), "all") == 0; in DoExecute()
49 m_unique_stacks = ::strcmp(command.GetArgumentAtIndex(0), "unique") == 0; in DoExecute()
63 const size_t num_args = command.GetArgumentCount(); in DoExecute()
71 if (!llvm::to_integer(command.GetArgumentAtIndex(i), thread_idx)) { in DoExecute()
73 command.GetArgumentAtIndex(i)); in DoExecute()
82 command.GetArgumentAtIndex(i)); in DoExecute()
170 bool CommandObjectMultipleThreads::DoExecute(Args &command, in DoExecute() argument
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Usage/t/inc/Pod/
H A DPlainText.pm158 sub command { subroutine
160 my $command = shift;
161 return if $command eq 'pod';
162 return if ($$self{EXCLUDE} && $command ne 'end');
166 $self->output($_) if($command eq 'back');
168 $command = 'cmd_' . $command;
169 return $self->$command (@_);
252 my $command = shift;
254 return '' if ($command eq 'X' || $command eq 'Z');
257 if ($command eq 'E') {
[all …]
/openbsd-src/gnu/llvm/lldb/examples/customization/import-python/
H A DREADME5 Python module which provides implementation for the 'import' command.
12 The import command defined by importcmd.py can be used in LLDB to load a Python
14 The command works by extending Python's sys.path lookup to include the path to
16 ordinary 'import' mechanism. In this respect, modules imported from LLDB command
18 The following terminal output shows an interaction with lldb using this new command.
22 (lldb) command script add import -f importcmd.pyimport_cmd
30 command, can be included in the .lldbinit file to make this feature available at
33 WARNING: The import command defined by importcmd.py is now obsolete
35 (lldb) command script import ../demo.py
40 using the native "command script import" command, which offers a superset of what the import comman…
/openbsd-src/gnu/usr.bin/perl/cpan/libnet/lib/Net/
H A DFTP.pm241 $ftp->command(uc $cmd, @_);
249 $ftp->command("SITE", @_);
386 $ok = $ftp->command("SITE", ${*$ftp}{'net_ftp_host'})->response;
389 $ok = $ftp->command("OPEN", ${*$ftp}{'net_ftp_host'})->response;
520 $ftp->command(pack("C", TELNET_DM) . "ABOR");
1148 $ftp->command($cmd, @_);
1177 $ftp->command($cmd, @_);
1210 sub command { subroutine
1214 $ftp->SUPER::command(@_);
1332 sub cmd { shift->command(@_)->response() }
[all …]
H A DNNTP.pm213 && $nntp->command($user, $pass)->response == CMD_OK;
713 sub _ARTICLE { shift->command('ARTICLE', @_)->response == CMD_OK }
714 sub _AUTHINFO { shift->command('AUTHINFO', @_)->response }
715 sub _BODY { shift->command('BODY', @_)->response == CMD_OK }
716 sub _DATE { shift->command('DATE')->response == CMD_INFO }
717 sub _GROUP { shift->command('GROUP', @_)->response == CMD_OK }
718 sub _HEAD { shift->command('HEAD', @_)->response == CMD_OK }
719 sub _HELP { shift->command('HELP', @_)->response == CMD_INFO }
720 sub _IHAVE { shift->command('IHAVE', @_)->response == CMD_MORE }
721 sub _LAST { shift->command('LAST')->response == CMD_OK }
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/SourceHandler/
H A DExecutable.pm44 command (L</can_handle>).
107 my @command;
109 @command = @{ $source->raw->{exec} || [] };
112 @command = File::Spec->rel2abs( ${ $source->raw } )
116 @command = @{ $source->raw };
119 $class->_croak('No command found in $source->raw!') unless @command;
124 push @command, @{ $source->test_args || [] };
127 { command => \@command,
[all...]
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DDiagnosticCommentKinds.td50 "empty paragraph passed to '%select{\\|@}0%1' command">,
54 "duplicated command '%select{\\|@}0%1'">,
58 "previous command '%select{\\|@}0%1' here">;
61 "previous command '%select{\\|@}0%1' (an alias of '\\%2') here">;
63 // \param command
75 "'%select{\\|@}0param' command used in a comment that is not attached to "
81 "command should be used in a comment attached to "
88 "command should not be used in a comment attached to a "
95 "command should not be used in a comment attached to a non-container declaration">,
112 // tparam command
[all …]
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperldebug.pod42 to enter a debugger command. Contrary to popular expectations, whenever
46 Any command not recognized by the debugger is directly executed
57 is first stripped before further processing. If a debugger command
59 function with something that doesn't look like a debugger command, such
104 X<debugger command, h>
108 =item h [command]
110 Prints out a help message for the given debugger command.
116 If the output of the C<h h> command (or any command, for that matter) scrolls
117 past your screen, precede the command wit
[all...]
/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dkod-cisco.c111 char buffer[PBUFSIZ], command[PBUFSIZ]; in cisco_kod_request() local
139 strcpy (command, "aL"); in cisco_kod_request()
142 strcat (command, ","); in cisco_kod_request()
143 strcat (command, prev_id); in cisco_kod_request()
145 strcat (command, ";"); in cisco_kod_request()
150 (*gdb_kod_query) (command, buffer, &bufsiz); in cisco_kod_request()
153 if (! strncmp (&command[3], "a500005a", 8)) in cisco_kod_request()
258 strcpy (command, "aI,"); in cisco_kod_request()
259 strcat (command, sync_ids[i]); in cisco_kod_request()
260 strcat (command, ";"); in cisco_kod_request()
[all …]
/openbsd-src/sys/arch/macppc/dev/
H A Dpm_direct.c347 switch (pmdata->command) { in pmgrop()
350 pm_cmd = (u_char)(pmdata->command & 0xff); in pmgrop()
364 pmdata->command = 0; in pmgrop()
384 pm_data = pmdata->command; in pmgrop()
391 pmdata->command = pm_data; in pmgrop()
450 pmdata.command = PMU_INT_ACK; in pm_intr()
500 pm_adb_op(u_char *buffer, void *compRout, void *data, int command) in pm_adb_op() argument
525 pmdata.command = 0x20; in pm_adb_op()
533 if ((command & 0xc) == 0x8) { in pm_adb_op()
549 if (command == PMU_RESET_ADB) { in pm_adb_op()
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/cli/
H A Dcli-script.c445 struct command_line *command = NULL; in while_command() local
448 command = get_command_line (while_control, arg); in while_command()
450 if (command == NULL) in while_command()
453 execute_control_command (command); in while_command()
454 free_command_lines (&command); in while_command()
463 struct command_line *command = NULL; in if_command() local
466 command = get_command_line (if_control, arg); in if_command()
468 if (command == NULL) in if_command()
471 execute_control_command (command); in if_command()
472 free_command_lines (&command); in if_command()
[all …]
/openbsd-src/gnu/usr.bin/cvs/windows-NT/
H A Drun.c470 start_child (char *command, HANDLE in, HANDLE out) in start_child() argument
485 (LPTSTR) command, in start_child()
555 char *command = (char *) malloc (len + 10); in build_command() local
559 if (! command) in build_command()
562 return command; in build_command()
565 p = command; in build_command()
584 if (p > command) in build_command()
587 return command; in build_command()
604 char *command; in piped_child() local
607 command = build_command (argv); in piped_child()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.cpp65 const CommandType command, const PacketStreamType &request_packet, in SendRequestAndGetReply() argument
97 if ((reply_command & eCommandTypeMask) == command) { in SendRequestAndGetReply()
99 if (command == KDP_RESUMECPUS) in SendRequestAndGetReply()
342 const CommandType command = KDP_CONNECT; in SendRequestConnect() local
346 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestConnect()
354 return SendRequestAndGetReply(command, request_packet, reply_packet); in SendRequestConnect()
369 const CommandType command = KDP_REATTACH; in SendRequestReattach() local
372 MakeRequestPacketHeader(command, request_packet, command_length); in SendRequestReattach()
378 if (SendRequestAndGetReply(command, request_packet, reply_packet)) { in SendRequestReattach()
403 const CommandType command = KDP_VERSION; in SendRequestVersion() local
[all …]
/openbsd-src/usr.sbin/tcpdump/
H A Dprint-ipx.c121 int command, i; in ipx_sap_print() local
124 command = EXTRACT_16BITS(ipx); in ipx_sap_print()
128 switch (command) { in ipx_sap_print()
131 if (command == 1) in ipx_sap_print()
146 if (command == 2) in ipx_sap_print()
162 printf("ipx-sap-?%x", command); in ipx_sap_print()
173 int command, i; in ipx_rip_print() local
176 command = EXTRACT_16BITS(ipx); in ipx_rip_print()
180 switch (command) { in ipx_rip_print()
201 printf("ipx-rip-?%x", command); in ipx_rip_print()
/openbsd-src/regress/lib/libc/popen/
H A Dpopen.c50 char *buffer, command[PATH_MAX]; in main() local
60 (void)snprintf(command, sizeof(command), "%s >%s", in main()
62 if ((pipe = popen(command, "w")) == NULL) in main()
71 (void)snprintf(command, sizeof(command), "%s %s", in main()
73 if ((pipe = popen(command, "r")) == NULL) in main()
/openbsd-src/gnu/usr.bin/binutils/gdb/mi/
H A Dmi-cmds.c31 static struct mi_cmd **lookup_table (const char *command);
183 mi_lookup (const char *command) in mi_lookup() argument
185 return *lookup_table (command); in mi_lookup()
199 lookup_table (const char *command) in lookup_table() argument
204 for (chp = command; *chp; chp++) in lookup_table()
219 if (strcmp (command, (*entry)->name) == 0) in lookup_table()
234 struct mi_cmd *command; in build_table() local
239 for (command = commands; command->name != 0; command++) in build_table()
241 struct mi_cmd **entry = lookup_table (command->name); in build_table()
245 command->name); in build_table()
[all …]

12345678910>>...74