Searched refs:cmd_name (Results 1 - 21 of 21) sorted by last modified time

/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dopt.c62 const char *cmd_name)
66 if (cmd_name == NULL)
71 if (strcmp(cmd_name, table[i].name) == 0)
74 if (strcmp(cmd_name, table[i].aliases[j]) == 0)
59 svn_opt_get_canonical_subcommand3(const svn_opt_subcommand_desc3_t *table, const char *cmd_name) argument
H A Ddeprecated.c397 const char *cmd_name)
401 if (cmd_name == NULL)
406 if (strcmp(cmd_name, table[i].name) == 0)
409 if (strcmp(cmd_name, table[i].aliases[j]) == 0)
421 const char *cmd_name)
425 if (cmd_name == NULL)
430 if (strcmp(cmd_name, table[i].name) == 0)
433 if (strcmp(cmd_name, table[i].aliases[j]) == 0)
394 svn_opt_get_canonical_subcommand2(const svn_opt_subcommand_desc2_t *table, const char *cmd_name) argument
418 svn_opt_get_canonical_subcommand(const svn_opt_subcommand_desc_t *table, const char *cmd_name) argument
/freebsd-11-stable/contrib/sendmail/src/
H A Dsrvrsmtp.c460 char *cmd_name; /* command name */ member in struct:cmd
1537 (c == NULL || c->cmd_name == NULL) ? "startup" : c->cmd_name);
1872 for (c = CmdTab; c->cmd_name != NULL; c++)
1874 if (sm_strcasecmp(c->cmd_name, cmdbuf) == 0)
3658 c->cmd_name, CurSmtpClient,
H A Dcontrol.c28 char *cmd_name; /* command name */ member in struct:cmd
330 for (c = CmdTab; c->cmd_name != NULL; c++)
332 if (sm_strcasecmp(c->cmd_name, cmdbuf) == 0)
/freebsd-11-stable/contrib/subversion/subversion/include/
H A Dsvn_opt.h178 * Return the entry in @a table whose name matches @a cmd_name, or @c NULL if
179 * none. @a cmd_name may be an alias.
185 const char *cmd_name);
198 const char *cmd_name);
202 * Return the entry in @a table whose name matches @a cmd_name, or @c NULL if
203 * none. @a cmd_name may be an alias.
213 const char *cmd_name);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUserExpression.cpp864 ConstString cmd_name("_cmd");
866 cmd_ptr = GetObjectPointer(frame_sp, cmd_name, object_ptr_error);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2987 llvm::StringRef cmd_name = cmd_obj->GetCommandName(); local
2988 actual_cmd_name_len += cmd_name.size();
2989 revised_command_line.Printf("%s", cmd_name.str().c_str());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMultiword.cpp328 llvm::StringRef cmd_name, const lldb::CommandObjectSP &command_sp) {
331 return proxy_command->LoadSubCommand(cmd_name, command_sp);
327 LoadSubCommand( llvm::StringRef cmd_name, const lldb::CommandObjectSP &command_sp) argument
H A DCommandObjectCommands.cpp1785 auto cmd_name = command[0].ref(); variable
1787 if (cmd_name.empty() || !m_interpreter.HasUserCommands() ||
1788 !m_interpreter.UserCommandExists(cmd_name)) {
1794 m_interpreter.RemoveUser(cmd_name);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObjectMultiword.h35 bool LoadSubCommand(llvm::StringRef cmd_name,
106 bool LoadSubCommand(llvm::StringRef cmd_name,
H A DCommandObject.h180 virtual bool LoadSubCommand(llvm::StringRef cmd_name, argument
/freebsd-11-stable/stand/lua/
H A Dcore.lua41 local function composeLoaderCmd(cmd_name, argstr)
43 cmd_name = cmd_name .. " " .. argstr
45 return cmd_name
H A Dcli.lua83 local cmd_name = argv[1]
84 local cmd = cli[cmd_name]
138 -- Used for splitting cli varargs into cmd_name and the rest of argv
141 local cmd_name
142 cmd_name, argv = core.popFrontTable(argv)
143 return cmd_name, argv
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dtls_openssl.c1258 const char *cmd_name = "LOAD_CERT_CTRL"; local
1262 0, (void *)cmd_name, NULL)) {
/freebsd-11-stable/usr.sbin/nandsim/
H A Dnandsim.c121 const char *cmd_name; /* Command name */ member in struct:nandsim_command
169 (opts->cmd_name != NULL); opts++) {
170 if (strcmp(opts->cmd_name, arg) == 0)
1192 (opts->cmd_name != NULL); opts++)
/freebsd-11-stable/usr.sbin/flowctl/
H A Dflowctl.c104 char *cmd_name; member in struct:ip_ctl_cmd
166 for (i = 0; cmds[i].cmd_name != NULL; i++)
167 if (!strncmp(argv[0], cmds[i].cmd_name, strlen(argv[0]))) {
/freebsd-11-stable/sys/ddb/
H A Dddb.h165 #define DB_COMMAND(cmd_name, func_name) \
166 _DB_FUNC(_cmd, cmd_name, func_name, db_cmd_table, 0, NULL)
169 #define DB_SHOW_COMMAND(cmd_name, func_name) \
170 _DB_FUNC(_show, cmd_name, func_name, db_show_table, 0, NULL)
173 #define DB_SHOW_ALL_COMMAND(cmd_name, func_name) \
174 _DB_FUNC(_show_all, cmd_name, func_name, db_show_all_table, 0, NULL)
/freebsd-11-stable/crypto/openssl/crypto/engine/
H A Deng_ctrl.c72 if ((defn->cmd_num == 0) || (defn->cmd_name == NULL))
80 while (!int_ctrl_cmd_is_null(defn) && (strcmp(defn->cmd_name, s) != 0)) {
127 /* Now handle cmd_name -> cmd_num conversion */
156 return strlen(e->cmd_defns[idx].cmd_name);
158 return BIO_snprintf(s, strlen(e->cmd_defns[idx].cmd_name) + 1,
159 "%s", e->cmd_defns[idx].cmd_name);
247 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, argument
252 if ((e == NULL) || (cmd_name == NULL)) {
258 0, (void *)cmd_name,
284 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, cons argument
[all...]
H A Dengine.h321 * has cmd_num set to zero and/or cmd_name set to NULL.
325 const char *cmd_name; /* The command name itself */ member in struct:ENGINE_CMD_DEFN_st
512 * on how to use the cmd_name and cmd_optional.
514 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name,
519 * cmd_name is converted to a command number and the control command is
524 * doesn't support the given cmd_name the return value will be success
539 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,
/freebsd-11-stable/contrib/gdb/gdb/
H A Dremote.c654 char *cmd_name;
664 xasprintf (&cmd_name, "%s-packet", title);
665 add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
674 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
676 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
652 char *cmd_name; local
/freebsd-11-stable/sys/dev/pdq/
H A Dpdq.c376 const char *cmd_name;
582 pdq_cmd_info[op].cmd_name));
616 pdq_cmd_info[rspgen->generic_op].cmd_name,
371 const char *cmd_name; member in struct:__anon11420

Completed in 258 milliseconds