Searched refs:command (Results 76 - 100 of 674) sorted by relevance

1234567891011>>

/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectRegexCommand.cpp57 void CommandObjectRegexCommand::DoExecute(llvm::StringRef command, argument
62 if (pos->regex.Execute(command, &matches)) {
64 SubstituteVariables(pos->command, matches);
70 // Interpret the new command and return this as the result!
73 // We don't have to pass an override_context here, as the command that
85 result.GetErrorStream() << "Command contents '" << command
97 m_entries.back().command = command_cstr.str();
H A DCommandObjectMemoryTag.cpp45 void DoExecute(Args &command, CommandReturnObject &result) override {
46 if ((command.GetArgumentCount() < 1) || (command.GetArgumentCount() > 2)) {
55 &m_exe_ctx, command[0].ref(), LLDB_INVALID_ADDRESS, &error);
65 if (command.GetArgumentCount() > 1) {
66 end_addr = OptionArgParser::ToRawAddress(&m_exe_ctx, command[1].ref(),
197 void DoExecute(Args &command, CommandReturnObject &result) override {
198 if (command.GetArgumentCount() < 2) {
206 &m_exe_ctx, command[0].ref(), LLDB_INVALID_ADDRESS, &error);
213 command
[all...]
H A DCommandObjectStats.cpp29 void DoExecute(Args &command, CommandReturnObject &result) override {
50 void DoExecute(Args &command, CommandReturnObject &result) override {
106 void DoExecute(Args &command, CommandReturnObject &result) override {
H A DCommandObjectThreadUtil.h57 void DoExecute(Args &command, CommandReturnObject &result) override;
87 void DoExecute(Args &command, CommandReturnObject &result) override;
90 /// Method that handles the command after the main arguments have been parsed.
97 virtual bool DoExecuteOnThreads(Args &command, CommandReturnObject &result,
H A DCommandObjectHelp.cpp20 Stream *s, llvm::StringRef command, llvm::StringRef prefix,
23 if (!s || command.empty())
26 std::string command_str = command.str();
31 s->Printf("'%s' is not a known command.\n", command_str.c_str());
49 "about a specific command.",
54 // A list of command names forming a path to the command we want help on.
77 void CommandObjectHelp::DoExecute(Args &command, CommandReturnObject &result) { argument
80 const size_t argc = command.GetArgumentCount();
82 // 'help' doesn't take any arguments, other than command name
19 GenerateAdditionalHelpAvenuesMessage( Stream *s, llvm::StringRef command, llvm::StringRef prefix, llvm::StringRef subcommand, bool include_upropos, bool include_type_lookup) argument
[all...]
H A DCommandObjectDWIMPrint.h20 /// Implements `dwim-print`, a printing command that chooses the most direct,
29 /// The `dwim-print` command serves as a single print command for users who
47 void DoExecute(llvm::StringRef command, CommandReturnObject &result) override;
/freebsd-current/usr.sbin/bluetooth/hccontrol/
H A Dhccontrol.c67 /* Process command line arguments */
193 "'help command'\n");
229 fprintf(stdout, "Unknown command: \"%s\"\n", cmd);
246 fprintf(stdout, "Could not execute command \"%s\". %s\n",
251 fprintf(stdout, "Usage: %s\n%s\n", c->command, c->description);
261 /* Try to find command in specified category */
263 find_hci_command(char const *command, struct hci_command *category) argument
267 for (c = category; c->command != NULL; c++) {
268 char *c_end = strchr(c->command, ' ');
271 int len = c_end - c->command;
[all...]
/freebsd-current/sbin/fdisk/
H A Dfdisk.c962 parse_config_line(char *line, CMD *command) argument
968 memset(command, 0, sizeof(*command));
973 command->cmd = *cp++;
985 command->args[command->n_args].argtype = *cp++;
987 command->args[command->n_args].arg_val = strtoul(cp, &end, 0);
993 command->args[command
1006 process_geometry(CMD *command) argument
1124 process_partition(CMD *command) argument
1263 process_active(CMD *command) argument
1300 CMD command; local
[all...]
/freebsd-current/sys/contrib/ncsw/inc/Peripherals/
H A Dfm_ext.h218 volatile uint32_t command; /**< ContextA Command */ member in struct:t_FmContextA
256 #define FM_CONTEXTA_GET_OVERRIDE(contextA) ((((t_FmContextA *)contextA)->command & FM_CONTEXTA_OVERRIDE_MASK) >> (31-0))
257 #define FM_CONTEXTA_GET_ICMD(contextA) ((((t_FmContextA *)contextA)->command & FM_CONTEXTA_ICMD_MASK) >> (31-1))
258 #define FM_CONTEXTA_GET_A1_VALID(contextA) ((((t_FmContextA *)contextA)->command & FM_CONTEXTA_A1_VALID_MASK) >> (31-2))
259 #define FM_CONTEXTA_GET_A1(contextA) ((((t_FmContextA *)contextA)->command & FM_CONTEXTA_A1_MASK) >> (31-31))
260 #define FM_CONTEXTA_GET_MACCMD(contextA) ((((t_FmContextA *)contextA)->command & FM_CONTEXTA_MACCMD_MASK) >> (31-15))
261 #define FM_CONTEXTA_GET_MACCMD_VALID(contextA) ((((t_FmContextA *)contextA)->command & FM_CONTEXTA_MACCMD_VALID_MASK) >> (31-8))
262 #define FM_CONTEXTA_GET_MACCMD_SECURED(contextA) ((((t_FmContextA *)contextA)->command & FM_CONTEXTA_MACCMD_SECURED_MASK) >> (31-11))
263 #define FM_CONTEXTA_GET_MACCMD_SECURE_CHANNEL(contextA) ((((t_FmContextA *)contextA)->command & FM_CONTEXTA_MACCMD_SC_MASK) >> (31-15))
265 #define FM_CONTEXTA_SET_OVERRIDE(contextA,val) (((t_FmContextA *)contextA)->command
[all...]
/freebsd-current/contrib/ofed/libibverbs/
H A Dkern-abi.h141 __u32 command; member in struct:hdr
152 __u32 command; member in struct:ex_hdr::__anon5645
177 * All commands from userspace should start with a __u32 command field
179 * length of the command block and response buffer if any in 32-bit
181 * the rest of the command struct based on these value.
185 __u32 command; member in struct:ibv_query_params
196 __u32 command; member in struct:ibv_get_context
209 __u32 command; member in struct:ibv_query_device
297 __u32 command; member in struct:ibv_query_port
331 __u32 command; member in struct:ibv_alloc_pd
343 __u32 command; member in struct:ibv_dealloc_pd
350 __u32 command; member in struct:ibv_open_xrcd
364 __u32 command; member in struct:ibv_close_xrcd
371 __u32 command; member in struct:ibv_reg_mr
390 __u32 command; member in struct:ibv_rereg_mr
410 __u32 command; member in struct:ibv_dereg_mr
417 __u32 command; member in struct:ibv_alloc_mw
432 __u32 command; member in struct:ibv_dealloc_mw
440 __u32 command; member in struct:ibv_create_comp_channel
451 __u32 command; member in struct:ibv_create_cq
508 __u32 command; member in struct:ibv_poll_cq
523 __u32 command; member in struct:ibv_req_notify_cq
531 __u32 command; member in struct:ibv_resize_cq
547 __u32 command; member in struct:ibv_destroy_cq
635 __u32 command; member in struct:ibv_create_qp
648 __u32 command; member in struct:ibv_open_qp
707 __u32 command; member in struct:ibv_query_qp
780 __u32 command; member in struct:ibv_modify_qp
800 __u32 command; member in struct:ibv_destroy_qp
980 __u32 command; member in struct:ibv_post_send
1002 __u32 command; member in struct:ibv_post_recv
1018 __u32 command; member in struct:ibv_post_srq_recv
1034 __u32 command; member in struct:ibv_create_ah
1049 __u32 command; member in struct:ibv_destroy_ah
1056 __u32 command; member in struct:ibv_attach_mcast
1085 __u32 command; member in struct:ibv_detach_mcast
1096 __u32 command; member in struct:ibv_create_srq
1109 __u32 command; member in struct:ibv_create_xsrq
1133 __u32 command; member in struct:ibv_modify_srq
1144 __u32 command; member in struct:ibv_query_srq
1161 __u32 command; member in struct:ibv_destroy_srq
1240 __u32 command; member in struct:ibv_modify_srq_v3
[all...]
/freebsd-current/sys/x86/cpufreq/
H A Dsmist.c71 int command; member in struct:smist_softc
127 int15_gsic_call(int *sig, int *smi_cmd, int *command, int *smi_data, int *flags) argument
139 *command = (vmf.vmf_ebx >> 16) & 0xff;
145 *command = -1;
156 int command; member in struct:set_ownership_data
179 : "a" (data->command),
217 cb_data.command = sc->command;
253 : "a" (sc->command),
320 int sig, smi_cmd, command, smi_dat local
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dsh-errctl.mk7 # With error control, each simple command is checked, whereas with echo
8 # control, only the last command from each line is checked. A shell command
H A Dmeta-cmd-cmp.exp10 .meta-cmd-cmp.cmp2.meta: 3: cannot compare command using .OODATE
14 .meta-cmd-cmp.cmp.meta: 2: a build command has changed
20 .meta-cmd-cmp.cmp2.meta: 3: cannot compare command using .OODATE
24 .meta-cmd-cmp.cmp.meta: 2: a build command has changed
30 .meta-cmd-cmp.cmp2.meta: 2: a build command has changed
41 .meta-cmd-cmp.filter.meta: 2: a build command has changed
H A Dcmdline.mk3 # Tests for command line parsing and related special variables.
20 # The .OBJDIR can be set via the MAKEOBJDIR command line variable.
21 # It must be a command line variable; an environment variable would not work.
26 # The .OBJDIR can be set via the MAKEOBJDIR command line variable,
40 # Variable assignments in the command line are handled differently from
41 # variable assignments in makefiles. In the command line, trailing whitespace
/freebsd-current/sys/contrib/dev/rtw88/
H A Dsec.c30 u32 command; local
76 command = write_cmd | (addr + i);
78 rtw_write32(rtwdev, RTW_SEC_CMD_REG, command);
88 u32 command; local
98 command = write_cmd | addr;
100 rtw_write32(rtwdev, RTW_SEC_CMD_REG, command);
/freebsd-current/contrib/googletest/googletest/test/
H A Dgoogletest-json-output-unittest.py717 command = [
722 p = gtest_test_utils.Subprocess(command)
735 'the expected exit code %s.' % (command, p.exit_code, 1),
769 command = [
773 p = gtest_test_utils.Subprocess(command)
785 % (command, p.exit_code, expected_exit_code),
H A Dgtest_list_output_unittest.py38 (a program written with Google Test) the command line flags.
253 command = [
260 command, env=environ_copy, working_dir=gtest_test_utils.GetTempDir()
/freebsd-current/contrib/atf/atf-sh/
H A Datf-sh.cpp67 std::string* command = new std::string(); local
68 command->reserve(512);
69 (*command) += ("Atf_Check='" + libexecdir + "/atf-check' ; " +
74 return command;
/freebsd-current/contrib/tcsh/
H A Dtc.func.c195 dolist(Char **v, struct command *c)
221 struct command *t;
301 /* build a syntax tree for the command. */
391 dotelltc(Char **v, struct command *c)
402 doechotc(Char **v, struct command *c)
412 dosettc(Char **v, struct command *c)
473 dowhich(Char **v, struct command *c)
826 * is executed as a command. This is done
829 * one's current directory just before each command.
957 * foregrounded. The command i
[all...]
H A Dsh.parse.c41 static struct command *syn0 (const struct wordent *, const struct wordent *, int);
42 static struct command *syn1 (const struct wordent *, const struct wordent *, int);
43 static struct command *syn1a (const struct wordent *, const struct wordent *, int);
44 static struct command *syn1b (const struct wordent *, const struct wordent *, int);
45 static struct command *syn2 (const struct wordent *, const struct wordent *, int);
46 static struct command *syn3 (const struct wordent *, const struct wordent *, int);
53 * If word 0 of a command has an alias, do it.
205 struct command *
222 static struct command *
226 struct command *
[all...]
/freebsd-current/sys/ofed/drivers/infiniband/core/
H A Drdma_core.h166 uapi_get_method(const struct uverbs_api *uapi, u32 command) argument
168 u32 cmd_idx = command & IB_USER_VERBS_CMD_COMMAND_MASK;
170 if (command & ~(u32)(IB_USER_VERBS_CMD_FLAG_EXTENDED |
174 if (command & IB_USER_VERBS_CMD_FLAG_EXTENDED) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/
H A DScriptInterpreterNone.h23 llvm::StringRef command, CommandReturnObject *result,
/freebsd-current/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_ioctl_os.c72 {"command", DATA_TYPE_STRING, 0},
99 const char *command; local
111 "command", &command) != 0)
131 error = vdev_label_write_pad2(vd, command, strlen(command));
/freebsd-current/libexec/rc/rc.d/
H A Dnscd27 command=/usr/sbin/nscd
29 flush_cmd="${command} -I all"
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestProbeData.java79 System.err.println("usage: java TestProbedata <command>");
83 String command = args[0];
102 consumer.createProcess(command);

Completed in 366 milliseconds

1234567891011>>