Searched defs:cmds (Results 1 - 9 of 9) sorted by relevance
/external/tcpdump/ |
H A D | print-telnet.c | 71 static const char *cmds[] = { variable 197 (void)printf(" %s", STR_OR_ID(c, cmds));
|
/external/iproute2/ip/ |
H A D | ip.c | 61 } cmds[] = { variable in typeref:struct:cmd 88 for (c = cmds; c->cmd; ++c) {
|
/external/openssl/apps/ |
H A D | engine.c | 203 STACK_OF(OPENSSL_STRING) *cmds = NULL; 214 cmds = sk_OPENSSL_STRING_new_null(); 216 if(!cmds) 287 if(cmds) sk_OPENSSL_STRING_pop_free(cmds, identity); 293 static void util_do_cmds(ENGINE *e, STACK_OF(OPENSSL_STRING) *cmds, argument 296 int loop, res, num = sk_OPENSSL_STRING_num(cmds); 307 cmd = sk_OPENSSL_STRING_value(cmds, loop);
|
/external/quake/quake/src/QW/client/ |
H A D | gl_mesh.c | 288 int *cmds;
local 349 cmds = Hunk_Alloc (numcommands * 4);
350 paliashdr->commands = (byte *)cmds - (byte *)paliashdr;
351 memcpy (cmds, commands, numcommands * 4);
|
/external/quake/quake/src/WinQuake/ |
H A D | gl_mesh.cpp | 301 int *cmds; local 356 cmds = (int*) Hunk_Alloc (numcommands * 4); 357 paliashdr->commands = (byte *)cmds - (byte *)paliashdr; 358 memcpy (cmds, commands, numcommands * 4);
|
/external/linux-tools-perf/util/ |
H A D | help.c | 7 void add_cmdname(struct cmdnames *cmds, const char *name, size_t len) argument 15 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc); 16 cmds->names[cmds->cnt++] = ent; 19 static void clean_cmdnames(struct cmdnames *cmds) argument 23 for (i = 0; i < cmds->cnt; ++i) 24 free(cmds->names[i]); 25 free(cmds 37 uniq(struct cmdnames *cmds) argument 51 exclude_cmds(struct cmdnames *cmds, struct cmdnames *excludes) argument 73 pretty_print_string_list(struct cmdnames *cmds, int longest) argument 122 list_commands_in_dir(struct cmdnames *cmds, const char *path, const char *prefix) argument 263 add_cmd_list(struct cmdnames *cmds, struct cmdnames *old) argument [all...] |
/external/openssh/ |
H A D | sftp.c | 164 static const struct CMD cmds[] = { variable in typeref:struct:CMD 1143 for (i = 0; cmds[i].c != NULL; i++) { 1144 if (strcasecmp(cmds[i].c, argv[0]) == 0) 1147 cmdnum = cmds[i].n; 1148 cmd = cmds[i].c; 1609 list = xcalloc((sizeof(cmds) / sizeof(*cmds)) + 1, sizeof(char *)); 1613 for (y = 0; cmds[y].c; y++) 1614 list[count++] = xstrdup(cmds[y].c); 1627 for (y = 0; cmds[ [all...] |
/external/libppp/src/ |
H A D | command.c | 1029 FindCommand(struct cmdtab const *cmds, const char *str, int *pmatch) argument 1038 while (cmds->func) { 1039 if (cmds->name && strncasecmp(str, cmds->name, len) == 0) { 1040 if (cmds->name[len] == '\0') { 1042 return cmds; 1045 found = cmds; 1046 } else if (cmds->alias && strncasecmp(str, cmds->alias, len) == 0) { 1047 if (cmds 1080 FindExec(struct bundle *bundle, struct cmdtab const *cmds, int argc, int argn, char const *const *argv, struct prompt *prompt, struct datalink *cx) argument [all...] |
/external/qemu/ |
H A D | monitor.c | 280 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds, argument 285 for(cmd = cmds; cmd->name != NULL; cmd++) {
|
Completed in 1109 milliseconds