Home
last modified time | relevance | path

Searched refs:ncmd (Results 1 – 9 of 9) sorted by relevance

/dflybsd-src/bin/sh/pregenerated/
H A Dnodes.c65 ALIGN(sizeof (struct ncmd)),
154 calcsize(n->ncmd.redirect, result); in calcsize()
155 calcsize(n->ncmd.args, result); in calcsize()
249 new->ncmd.redirect = copynode(n->ncmd.redirect, state); in copynode()
250 new->ncmd.args = copynode(n->ncmd.args, state); in copynode()
H A Dnodes.h42 struct ncmd { struct
138 struct ncmd ncmd; member
/dflybsd-src/bin/sh/
H A Deval.c855 for (argp = cmd->ncmd.args ; argp ; argp = argp->narg.next) { in evalcommand()
865 expredir(cmd->ncmd.redirect); in evalcommand()
995 cmd->ncmd.redirect == NULL && in evalcommand()
1048 redirect(cmd->ncmd.redirect, REDIR_PUSH); in evalcommand()
1092 redirect(cmd->ncmd.redirect, mode); in evalcommand()
1147 redirect(cmd->ncmd.redirect, 0); in evalcommand()
1192 if (n && n->type == NCMD && n->ncmd.args) in prehash()
1193 if (goodname(n->ncmd.args->narg.text)) in prehash()
1194 find_command(n->ncmd.args->narg.text, &entry, 0, in prehash()
H A Dshow.c132 for (np = cmd->ncmd.args ; np ; np = np->narg.next) { in shcmd()
138 for (np = cmd->ncmd.redirect ; np ; np = np->nfile.next) { in shcmd()
H A Dnodetypes57 NCMD ncmd # a simple command
H A Dparser.c694 n = (union node *)stalloc(sizeof (struct ncmd)); in simplecmd()
696 n->ncmd.args = args; in simplecmd()
697 n->ncmd.redirect = redir; in simplecmd()
H A Djobs.c1466 for (np = n->ncmd.args ; np ; np = np->narg.next) { in cmdtxt()
1471 for (np = n->ncmd.redirect ; np ; np = np->nfile.next) { in cmdtxt()
/dflybsd-src/sys/dev/raid/mlx/
H A Dmlx.c213 int error, ncmd; in mlx_sglist_map() local
230 ncmd = 2; in mlx_sglist_map()
232 ncmd = sc->mlx_enq2->me_max_commands; in mlx_sglist_map()
234 segsize = sizeof(struct mlx_sgentry) * MLX_NSEG * ncmd; in mlx_sglist_map()
/dflybsd-src/sys/dev/raid/mly/
H A Dmly.c1719 int i, ncmd; in mly_alloc_commands() local
1722 ncmd = 4; in mly_alloc_commands()
1724 ncmd = min(MLY_MAX_COMMANDS, sc->mly_controllerinfo->maximum_parallel_commands); in mly_alloc_commands()
1736 ncmd * sizeof(union mly_command_packet), in mly_alloc_commands()
1740 for (i = 0; i < ncmd; i++) { in mly_alloc_commands()