Symbol: cmdtab
libexec/ftpd/ftpcmd.y
1090
struct tab cmdtab[] = { /* In order defined in RFC 765 */
libexec/ftpd/ftpcmd.y
1332
p = lookup(cmdtab, cbuf);
libexec/ftpd/ftpcmd.y
543
help(cmdtab, NULL);
libexec/ftpd/ftpcmd.y
558
help(cmdtab, $3);
usr.bin/mail/cmd1.c
222
for (cc = 0, cp = cmdtab; cp->c_name != NULL; cp++) {
usr.bin/mail/cmd1.c
42
extern const struct cmd cmdtab[];
usr.bin/mail/cmdtab.c
43
const struct cmd cmdtab[] = {
usr.bin/mail/lex.c
46
extern const struct cmd cmdtab[];
usr.bin/mail/lex.c
495
for (cp = &cmdtab[0]; cp->c_name != NULL; cp++)
usr.bin/systat/cmds.c
103
if (p == (struct cmdtab *)-1) {
usr.bin/systat/cmds.c
140
struct cmdtab *
usr.bin/systat/cmds.c
144
struct cmdtab *ct, *found;
usr.bin/systat/cmds.c
150
for (ct = cmdtab; (p = ct->c_name); ct++) {
usr.bin/systat/cmds.c
164
return ((struct cmdtab *)-1);
usr.bin/systat/cmds.c
45
struct cmdtab *p;
usr.bin/systat/cmds.c
75
for (p = cmdtab; p->c_name; p++) {
usr.bin/systat/cmdtab.c
38
struct cmdtab cmdtab[] = {
usr.bin/systat/cmdtab.c
92
struct cmdtab *curcmd = &cmdtab[0];
usr.bin/systat/extern.h
35
extern struct cmdtab *curcmd;
usr.bin/systat/extern.h
36
extern struct cmdtab cmdtab[];
usr.bin/systat/extern.h
90
struct cmdtab *lookup(const char *);
usr.bin/systat/main.c
116
struct cmdtab *p;
usr.bin/systat/main.c
119
if (p == (struct cmdtab *)-1)
usr.bin/telnet/commands.c
2457
static Command cmdtab[] = {
usr.bin/telnet/commands.c
2518
if ((cm = (Command *) genget(name, (char **) cmdtab, sizeof(Command))))
usr.bin/telnet/commands.c
2603
for (c = cmdtab; c->name; c++)
usr.bin/tftp/main.c
123
struct cmd cmdtab[] = {
usr.bin/tftp/main.c
644
for (c = cmdtab; (p = c->name) != NULL; c++) {
usr.bin/tftp/main.c
707
for (c = cmdtab; c->name; c++)
usr.sbin/cdcontrol/cdcontrol.c
1194
struct cmdtab *c;
usr.sbin/cdcontrol/cdcontrol.c
1229
for (c=cmdtab; c->name; ++c) {
usr.sbin/cdcontrol/cdcontrol.c
148
struct cmdtab *c;
usr.sbin/cdcontrol/cdcontrol.c
153
for (c=cmdtab; c->name; ++c) {
usr.sbin/cdcontrol/cdcontrol.c
84
} 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
76
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/nvmmctl/nvmmctl.c
64
const struct cmdtab *ct;
usr.sbin/ppp/command.c
1003
static struct cmdtab const *
usr.sbin/ppp/command.c
1004
FindCommand(struct cmdtab const *cmds, const char *str, int *pmatch)
usr.sbin/ppp/command.c
1008
struct cmdtab const *found;
usr.sbin/ppp/command.c
1055
FindExec(struct bundle *bundle, struct cmdtab const *cmds, int argc, int argn,
usr.sbin/ppp/command.c
1058
struct cmdtab const *cmd;
usr.sbin/ppp/command.c
1082
arg.cmdtab = cmds;
usr.sbin/ppp/command.c
193
showcx(struct cmdtab const *cmd)
usr.sbin/ppp/command.c
206
struct cmdtab const *cmd;
usr.sbin/ppp/command.c
216
for (cmd = arg->cmdtab; cmd->name || cmd->alias; cmd++)
usr.sbin/ppp/command.c
2264
static struct cmdtab const SetCommands[] = {
usr.sbin/ppp/command.c
227
for (cmd = arg->cmdtab; cmd->func; cmd++)
usr.sbin/ppp/command.c
239
for (cmd = arg->cmdtab; cmd->func; cmd++)
usr.sbin/ppp/command.c
2848
static struct cmdtab const NegotiateCommands[] = {
usr.sbin/ppp/command.c
734
static struct cmdtab const NatCommands[] =
usr.sbin/ppp/command.c
774
static struct cmdtab const AllowCommands[] = {
usr.sbin/ppp/command.c
784
static struct cmdtab const IfaceCommands[] =
usr.sbin/ppp/command.c
806
static struct cmdtab const Commands[] = {
usr.sbin/ppp/command.c
947
static struct cmdtab const ShowCommands[] = {
usr.sbin/ppp/command.h
32
struct cmdtab;
usr.sbin/ppp/command.h
38
struct cmdtab const *cmdtab; /* The entire command table */
usr.sbin/ppp/command.h
39
struct cmdtab const *cmd; /* This command entry */
usr.sbin/ppp/prompt.c
278
arg.cmdtab = NULL;