| /freebsd-13.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-13.1/stand/lua/ |
| H A D | cli.lua | 102 local cmd_name = argv[1] 103 local cmd = cli[cmd_name] 261 local cmd_name 262 cmd_name, argv = core.popFrontTable(argv) 263 return cmd_name, argv
|
| H A D | core.lua | 43 local function composeLoaderCmd(cmd_name, argstr) 45 cmd_name = cmd_name .. " " .. argstr 47 return cmd_name
|
| /freebsd-13.1/sys/ddb/ |
| H A D | ddb.h | 167 #define DB_COMMAND(cmd_name, func_name) \ argument 168 _DB_FUNC(_cmd, cmd_name, func_name, db_cmd_table, 0, NULL) 171 #define DB_SHOW_COMMAND(cmd_name, func_name) \ argument 172 _DB_FUNC(_show, cmd_name, func_name, db_show_table, 0, NULL) 175 #define DB_SHOW_ALL_COMMAND(cmd_name, func_name) \ argument 176 _DB_FUNC(_show_all, cmd_name, func_name, db_show_all_table, 0, NULL)
|
| /freebsd-13.1/sbin/pfilctl/ |
| H A D | pfilctl.c | 57 const char *cmd_name; member 76 for (int i = 0; cmds[i].cmd_name != NULL; i++) in main() 77 if (!strncmp(argv[0], cmds[i].cmd_name, strlen(argv[0]))) { in main()
|
| /freebsd-13.1/contrib/subversion/subversion/include/ |
| H A D | svn_opt.h | 184 const char *cmd_name); 197 const char *cmd_name); 212 const char *cmd_name);
|
| /freebsd-13.1/contrib/sendmail/src/ |
| H A D | control.c | 28 char *cmd_name; /* command name */ member 330 for (c = CmdTab; c->cmd_name != NULL; c++) 332 if (sm_strcasecmp(c->cmd_name, cmdbuf) == 0)
|
| H A D | srvrsmtp.c | 460 char *cmd_name; /* command name */ member 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,
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | CommandObjectMultiword.h | 35 bool LoadSubCommand(llvm::StringRef cmd_name, 110 bool LoadSubCommand(llvm::StringRef cmd_name,
|
| H A D | CommandObject.h | 181 virtual bool LoadSubCommand(llvm::StringRef cmd_name, in LoadSubCommand() argument
|
| /freebsd-13.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-13.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-13.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | deprecated.c | 395 const char *cmd_name) in svn_opt_get_canonical_subcommand2() argument 399 if (cmd_name == NULL) in svn_opt_get_canonical_subcommand2() 404 if (strcmp(cmd_name, table[i].name) == 0) in svn_opt_get_canonical_subcommand2() 407 if (strcmp(cmd_name, table[i].aliases[j]) == 0) in svn_opt_get_canonical_subcommand2() 419 const char *cmd_name) in svn_opt_get_canonical_subcommand() argument 423 if (cmd_name == NULL) in svn_opt_get_canonical_subcommand() 428 if (strcmp(cmd_name, table[i].name) == 0) in svn_opt_get_canonical_subcommand() 431 if (strcmp(cmd_name, table[i].aliases[j]) == 0) in svn_opt_get_canonical_subcommand()
|
| H A D | opt.c | 60 const char *cmd_name) in svn_opt_get_canonical_subcommand3() argument 64 if (cmd_name == NULL) in svn_opt_get_canonical_subcommand3() 69 if (strcmp(cmd_name, table[i].name) == 0) in svn_opt_get_canonical_subcommand3() 72 if (strcmp(cmd_name, table[i].aliases[j]) == 0) in svn_opt_get_canonical_subcommand3()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectMultiword.cpp | 348 llvm::StringRef cmd_name, const lldb::CommandObjectSP &command_sp) { in LoadSubCommand() argument 351 return proxy_command->LoadSubCommand(cmd_name, command_sp); in LoadSubCommand()
|
| H A D | CommandObjectCommands.cpp | 1640 auto cmd_name = command[0].ref(); in DoExecute() local 1642 if (cmd_name.empty() || !m_interpreter.HasUserCommands() || in DoExecute() 1643 !m_interpreter.UserCommandExists(cmd_name)) { in DoExecute() 1648 m_interpreter.RemoveUser(cmd_name); in DoExecute()
|
| /freebsd-13.1/sys/contrib/dev/iwlwifi/ |
| H A D | iwl-trans.c | 238 return ret->cmd_name; in iwl_get_cmd_string()
|
| H A D | iwl-trans.h | 370 const char *const cmd_name; member 374 { .cmd_id = x, .cmd_name = #x }
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangUserExpression.cpp | 916 ConstString cmd_name("_cmd"); in AddArguments() local 918 cmd_ptr = GetObjectPointer(frame_sp, cmd_name, object_ptr_error); in AddArguments()
|
| /freebsd-13.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-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandInterpreter.cpp | 3135 llvm::StringRef cmd_name = cmd_obj->GetCommandName(); in ResolveCommandImpl() local 3136 revised_command_line.Printf("%s", cmd_name.str().c_str()); in ResolveCommandImpl()
|
| /freebsd-13.1/contrib/wpa/src/crypto/ |
| H A D | tls_openssl.c | 1265 const char *cmd_name = "LOAD_CERT_CTRL"; in tls_engine_init() local 1269 0, (void *)cmd_name, NULL)) { in tls_engine_init()
|