Home
last modified time | relevance | path

Searched refs:cmdentry (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/bin/sh/
H A Deval.c829 struct cmdentry cmdentry; in evalcommand() local
882 cmdentry.u.index = BLTINCMD; in evalcommand()
883 cmdentry.special = 0; in evalcommand()
919 cmdentry.u.index = find_builtin(*argv, &cmdentry.special); in evalcommand()
978 cmdentry.special = 0; in evalcommand()
982 if (((cmdentry.cmdtype == CMDNORMAL || cmdentry.cmdtype == CMDUNKNOWN) in evalcommand()
1033 reffunc(cmdentry.u.func); in evalcommand()
1037 unreffunc(cmdentry.u.func); in evalcommand()
1056 unreffunc(cmdentry.u.func); in evalcommand()
1099 cmdentry.special = 1; in evalcommand()
[all …]
H A Dexec.h50 struct cmdentry { struct
66 void find_command(const char *, struct cmdentry *, int, const char *); argument
H A Dexec.c101 static void addcmdentry(const char *, struct cmdentry *);
264 struct cmdentry entry; in hashcmd()
352 find_command(const char *name, struct cmdentry *entry, int act, in find_command()
617 addcmdentry(const char *name, struct cmdentry *entry) in addcmdentry()
640 struct cmdentry entry; in defun()
705 struct cmdentry entry; in typecmd_impl()
/freebsd-13.1/usr.bin/systat/
H A Dmain.c84 struct cmdentry { struct
85 SLIST_ENTRY(cmdentry) link;
89 SLIST_HEAD(, cmdentry) commands; argument
95 struct cmdentry *cmd = NULL; in parse_cmd_args()
108 cmd = calloc(1, sizeof(struct cmdentry)); in parse_cmd_args()
158 struct cmdentry *cmd = NULL; in main()