Searched defs:cmds (Results 1 - 9 of 9) sorted by relevance

/external/tcpdump/
H A Dprint-telnet.c71 static const char *cmds[] = { variable
197 (void)printf(" %s", STR_OR_ID(c, cmds));
/external/iproute2/ip/
H A Dip.c61 } cmds[] = { variable in typeref:struct:cmd
88 for (c = cmds; c->cmd; ++c) {
/external/openssl/apps/
H A Dengine.c203 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 Dgl_mesh.c288 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 Dgl_mesh.cpp301 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 Dhelp.c7 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/bluetooth/bluez/tools/
H A Dhciconfig.c1084 uint8_t cmds[64]; local
1095 if (hci_read_local_commands(dd, cmds, 1000) < 0) {
1103 if (!cmds[i])
1107 i ? "\t\t ": "\tCommands:", i, cmds[i]);
1109 if (cmds[i] & (1 << n))
1114 str = hci_commandstostr(cmds, "\t", 71);
/external/openssh/
H A Dsftp.c164 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/qemu/
H A Dmonitor.c280 static void help_cmd_dump(Monitor *mon, const mon_cmd_t *cmds, argument
285 for(cmd = cmds; cmd->name != NULL; cmd++) {

Completed in 286 milliseconds