| /freebsd-12.1/crypto/openssl/crypto/engine/ |
| H A D | eng_ctrl.c | 26 if ((defn->cmd_num == 0) || (defn->cmd_name == NULL)) in int_ctrl_cmd_is_null() 34 while (!int_ctrl_cmd_is_null(defn) && (strcmp(defn->cmd_name, s) != 0)) { in int_ctrl_cmd_by_name() 108 return strlen(cdp->cmd_name); in int_ctrl_helper() 110 return strlen(strcpy(s, cdp->cmd_name)); in int_ctrl_helper() 193 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, in ENGINE_ctrl_cmd() argument 198 if (e == NULL || cmd_name == NULL) { in ENGINE_ctrl_cmd() 204 0, (void *)cmd_name, NULL)) <= 0) { in ENGINE_ctrl_cmd() 229 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, in ENGINE_ctrl_cmd_string() argument 236 if (e == NULL || cmd_name == NULL) { in ENGINE_ctrl_cmd_string() 242 0, (void *)cmd_name, NULL)) <= 0) { in ENGINE_ctrl_cmd_string()
|
| /freebsd-12.1/stand/lua/ |
| H A D | cli.lua | 82 local cmd_name = argv[1] 83 local cmd = cli[cmd_name] 131 local cmd_name 132 cmd_name, argv = core.popFrontTable(argv) 133 return cmd_name, argv
|
| H A D | core.lua | 41 local function composeLoaderCmd(cmd_name, argstr) 43 cmd_name = cmd_name .. " " .. argstr 45 return cmd_name
|
| /freebsd-12.1/sys/ddb/ |
| H A D | ddb.h | 171 #define DB_COMMAND(cmd_name, func_name) \ argument 172 _DB_FUNC(_cmd, cmd_name, func_name, db_cmd_table, 0, NULL) 175 #define DB_SHOW_COMMAND(cmd_name, func_name) \ argument 176 _DB_FUNC(_show, cmd_name, func_name, db_show_table, 0, NULL) 179 #define DB_SHOW_ALL_COMMAND(cmd_name, func_name) \ argument 180 _DB_FUNC(_show_all, cmd_name, func_name, db_show_all_table, 0, NULL)
|
| /freebsd-12.1/contrib/sendmail/src/ |
| H A D | control.c | 28 char *cmd_name; /* command name */ member 331 for (c = CmdTab; c->cmd_name != NULL; c++) 333 if (sm_strcasecmp(c->cmd_name, cmdbuf) == 0)
|
| H A D | srvrsmtp.c | 400 char *cmd_name; /* command name */ member 1448 (c == NULL || c->cmd_name == NULL) ? "startup" : c->cmd_name); 1770 for (c = CmdTab; c->cmd_name != NULL; c++) 1772 if (sm_strcasecmp(c->cmd_name, cmdbuf) == 0) 3518 c->cmd_name, CurSmtpClient,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/ |
| H A D | CommandObjectMultiword.h | 38 bool LoadSubCommand(llvm::StringRef cmd_name, 109 bool LoadSubCommand(llvm::StringRef cmd_name,
|
| H A D | CommandObject.h | 180 virtual bool LoadSubCommand(llvm::StringRef cmd_name, in LoadSubCommand() argument
|
| /freebsd-12.1/usr.sbin/flowctl/ |
| H A D | flowctl.c | 104 char *cmd_name; member 166 for (i = 0; cmds[i].cmd_name != NULL; i++) in execute_command() 167 if (!strncmp(argv[0], cmds[i].cmd_name, strlen(argv[0]))) { in execute_command()
|
| /freebsd-12.1/crypto/openssl/include/openssl/ |
| H A D | engine.h | 253 const char *cmd_name; /* The command name itself */ member 429 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, 454 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,
|
| /freebsd-12.1/contrib/subversion/subversion/include/ |
| H A D | svn_opt.h | 146 const char *cmd_name); 161 const char *cmd_name);
|
| /freebsd-12.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | opt.c | 60 const char *cmd_name) in svn_opt_get_canonical_subcommand2() argument 64 if (cmd_name == NULL) in svn_opt_get_canonical_subcommand2() 69 if (strcmp(cmd_name, table[i].name) == 0) in svn_opt_get_canonical_subcommand2() 72 if (strcmp(cmd_name, table[i].aliases[j]) == 0) in svn_opt_get_canonical_subcommand2()
|
| H A D | deprecated.c | 395 const char *cmd_name) in svn_opt_get_canonical_subcommand() argument 399 if (cmd_name == NULL) in svn_opt_get_canonical_subcommand() 404 if (strcmp(cmd_name, table[i].name) == 0) in svn_opt_get_canonical_subcommand() 407 if (strcmp(cmd_name, table[i].aliases[j]) == 0) in svn_opt_get_canonical_subcommand()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/ |
| H A D | CommandObjectMultiword.cpp | 338 llvm::StringRef cmd_name, const lldb::CommandObjectSP &command_sp) { in LoadSubCommand() argument 341 return proxy_command->LoadSubCommand(cmd_name, command_sp); in LoadSubCommand()
|
| H A D | CommandObjectCommands.cpp | 1848 auto cmd_name = command[0].ref; in DoExecute() local 1850 if (cmd_name.empty() || !m_interpreter.HasUserCommands() || in DoExecute() 1851 !m_interpreter.UserCommandExists(cmd_name)) { in DoExecute() 1857 m_interpreter.RemoveUser(cmd_name); in DoExecute()
|
| /freebsd-12.1/usr.sbin/nandsim/ |
| H A D | nandsim.c | 121 const char *cmd_name; /* Command name */ member 169 (opts->cmd_name != NULL); opts++) { in getcommand() 170 if (strcmp(opts->cmd_name, arg) == 0) in getcommand() 1192 (opts->cmd_name != NULL); opts++) in cmdhelp()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangUserExpression.cpp | 747 ConstString cmd_name("_cmd"); in AddArguments() local 749 cmd_ptr = GetObjectPointer(frame_sp, cmd_name, object_ptr_error); in AddArguments()
|
| /freebsd-12.1/contrib/gdb/gdb/ |
| H A D | remote.c | 652 char *cmd_name; in add_packet_config_cmd() local 662 xasprintf (&cmd_name, "%s-packet", title); in add_packet_config_cmd() 663 add_setshow_auto_boolean_cmd (cmd_name, class_obscure, in add_packet_config_cmd() 672 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0, in add_packet_config_cmd() 674 add_alias_cmd (legacy_name, cmd_name, class_obscure, 0, in add_packet_config_cmd()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/ |
| H A D | CommandInterpreter.cpp | 3044 llvm::StringRef cmd_name = cmd_obj->GetCommandName(); in ResolveCommandImpl() local 3045 actual_cmd_name_len += cmd_name.size(); in ResolveCommandImpl() 3046 revised_command_line.Printf("%s", cmd_name.str().c_str()); in ResolveCommandImpl()
|
| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | ENGINE_add.pod | 107 int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, 109 int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg,
|
| /freebsd-12.1/contrib/wpa/src/crypto/ |
| H A D | tls_openssl.c | 1258 const char *cmd_name = "LOAD_CERT_CTRL"; in tls_engine_init() local 1262 0, (void *)cmd_name, NULL)) { in tls_engine_init()
|
| /freebsd-12.1/contrib/binutils/bfd/ |
| H A D | ChangeLog-0203 | 10848 * vms-tir.c (cmd_name): New function. 10850 (etir_sta, etir_sto, etir_opr, etir_stc): Use cmd_name().
|