Symbol: cmdtab
crypto/heimdal/appl/ftp/ftp/cmdtab.c
116
struct cmd cmdtab[] = {
crypto/heimdal/appl/ftp/ftp/cmdtab.c
203
int NCMDS = (sizeof (cmdtab) / sizeof (cmdtab[0])) - 1;
crypto/heimdal/appl/ftp/ftp/extern.h
156
extern struct cmd cmdtab[];
crypto/heimdal/appl/ftp/ftp/main.c
349
for (c = cmdtab; (p = c->c_name); c++) {
crypto/heimdal/appl/ftp/ftp/main.c
544
for (c = cmdtab; c < &cmdtab[NCMDS]; c++) {
crypto/heimdal/appl/ftp/ftp/main.c
557
c = cmdtab + j * lines + i;
crypto/heimdal/appl/ftp/ftp/main.c
565
if (c + lines >= &cmdtab[NCMDS]) {
crypto/heimdal/appl/ftp/ftpd/ftpcmd.c
2098
help(cmdtab, (char *) 0);
crypto/heimdal/appl/ftp/ftpd/ftpcmd.c
2117
help(cmdtab, (yyvsp[(3) - (5)].s));
crypto/heimdal/appl/ftp/ftpd/ftpcmd.c
266
extern struct tab cmdtab[];
crypto/heimdal/appl/ftp/ftpd/ftpcmd.c
2985
struct tab cmdtab[] = { /* In order defined in RFC 765 */
crypto/heimdal/appl/ftp/ftpd/ftpcmd.c
3208
p = lookup(cmdtab, cbuf);
crypto/heimdal/appl/ftp/ftpd/ftpcmd.y
1155
p = lookup(cmdtab, cbuf);
crypto/heimdal/appl/ftp/ftpd/ftpcmd.y
383
help(cmdtab, (char *) 0);
crypto/heimdal/appl/ftp/ftpd/ftpcmd.y
399
help(cmdtab, $3);
crypto/heimdal/appl/ftp/ftpd/ftpcmd.y
67
extern struct tab cmdtab[];
crypto/heimdal/appl/ftp/ftpd/ftpcmd.y
932
struct tab cmdtab[] = { /* In order defined in RFC 765 */
crypto/heimdal/appl/telnet/telnet/commands.c
2294
static Command cmdtab[] = {
crypto/heimdal/appl/telnet/telnet/commands.c
2354
if ((cm = (Command *) genget(name, (char **) cmdtab, sizeof(Command))))
crypto/heimdal/appl/telnet/telnet/commands.c
2439
for (c = cmdtab; c->name; c++)
stand/fdt/fdt_loader_cmd.c
95
static const struct cmdtab commands[] = {
usr.bin/mail/cmd1.c
218
extern const struct cmd cmdtab[];
usr.bin/mail/cmd1.c
223
for (cc = 0, cp = cmdtab; cp->c_name != NULL; cp++) {
usr.bin/mail/cmdtab.c
41
const struct cmd cmdtab[] = {
usr.bin/mail/lex.c
45
extern const struct cmd cmdtab[];
usr.bin/mail/lex.c
494
for (cp = &cmdtab[0]; cp->c_name != NULL; cp++)
usr.bin/systat/cmds.c
109
if (p == (struct cmdtab *)-1) {
usr.bin/systat/cmds.c
146
struct cmdtab *
usr.bin/systat/cmds.c
150
struct cmdtab *ct, *found;
usr.bin/systat/cmds.c
155
found = (struct cmdtab *) 0;
usr.bin/systat/cmds.c
156
for (ct = cmdtab; (p = ct->c_name); ct++) {
usr.bin/systat/cmds.c
170
return ((struct cmdtab *)-1);
usr.bin/systat/cmds.c
48
struct cmdtab *p;
usr.bin/systat/cmds.c
77
for (p = cmdtab; p->c_name; p++) {
usr.bin/systat/cmdtab.c
38
struct cmdtab cmdtab[] = {
usr.bin/systat/cmdtab.c
85
struct cmdtab *curcmd = &cmdtab[0];
usr.bin/systat/extern.h
36
extern struct cmdtab *curcmd;
usr.bin/systat/extern.h
37
extern struct cmdtab cmdtab[];
usr.bin/systat/extern.h
90
struct cmdtab *lookup(const char *);
usr.bin/systat/main.c
153
struct cmdtab *p;
usr.bin/systat/main.c
156
if (p == (struct cmdtab *)-1)
usr.bin/systat/main.c
158
if (p == (struct cmdtab *)0)
usr.bin/tftp/main.c
124
static struct cmd cmdtab[] = {
usr.bin/tftp/main.c
790
for (c = cmdtab; (p = c->name) != NULL; c++) {
usr.bin/tftp/main.c
853
for (c = cmdtab; c->name; c++)
usr.sbin/cdcontrol/cdcontrol.c
1211
struct cmdtab *c;
usr.sbin/cdcontrol/cdcontrol.c
1246
for (c=cmdtab; c->name; ++c) {
usr.sbin/cdcontrol/cdcontrol.c
155
struct cmdtab *c;
usr.sbin/cdcontrol/cdcontrol.c
160
for (c=cmdtab; c->name; ++c) {
usr.sbin/cdcontrol/cdcontrol.c
93
} cmdtab[] = {
usr.sbin/lpr/lpc/cmdtab.c
61
struct cmd cmdtab[] = {
usr.sbin/lpr/lpc/cmdtab.c
84
int NCMDS = sizeof (cmdtab) / sizeof (cmdtab[0]);
usr.sbin/lpr/lpc/extern.h
74
extern struct cmd cmdtab[];
usr.sbin/lpr/lpc/lpc.c
231
for (c = cmdtab; (p = c->c_name); c++) {
usr.sbin/lpr/lpc/lpc.c
292
for (c = cmdtab; c->c_name; c++) {
usr.sbin/lpr/lpc/lpc.c
305
c = cmdtab + j * lines + i;
usr.sbin/lpr/lpc/lpc.c
308
if (c + lines >= &cmdtab[NCMDS]) {
usr.sbin/ppp/command.c
1039
static struct cmdtab const *
usr.sbin/ppp/command.c
1040
FindCommand(struct cmdtab const *cmds, const char *str, int *pmatch)
usr.sbin/ppp/command.c
1044
struct cmdtab const *found;
usr.sbin/ppp/command.c
1091
FindExec(struct bundle *bundle, struct cmdtab const *cmds, int argc, int argn,
usr.sbin/ppp/command.c
1094
struct cmdtab const *cmd;
usr.sbin/ppp/command.c
1118
arg.cmdtab = cmds;
usr.sbin/ppp/command.c
200
showcx(struct cmdtab const *cmd)
usr.sbin/ppp/command.c
213
struct cmdtab const *cmd;
usr.sbin/ppp/command.c
223
for (cmd = arg->cmdtab; cmd->name || cmd->alias; cmd++)
usr.sbin/ppp/command.c
234
for (cmd = arg->cmdtab; cmd->func; cmd++)
usr.sbin/ppp/command.c
2359
static struct cmdtab const SetCommands[] = {
usr.sbin/ppp/command.c
246
for (cmd = arg->cmdtab; cmd->func; cmd++)
usr.sbin/ppp/command.c
2978
static struct cmdtab const NegotiateCommands[] = {
usr.sbin/ppp/command.c
760
static struct cmdtab const NatCommands[] =
usr.sbin/ppp/command.c
806
static struct cmdtab const AllowCommands[] = {
usr.sbin/ppp/command.c
816
static struct cmdtab const IfaceCommands[] =
usr.sbin/ppp/command.c
842
static struct cmdtab const Commands[] = {
usr.sbin/ppp/command.c
983
static struct cmdtab const ShowCommands[] = {
usr.sbin/ppp/command.h
31
struct cmdtab;
usr.sbin/ppp/command.h
37
struct cmdtab const *cmdtab; /* The entire command table */
usr.sbin/ppp/command.h
38
struct cmdtab const *cmd; /* This command entry */
usr.sbin/ppp/prompt.c
279
arg.cmdtab = NULL;