OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NCMD
(Results
1 - 6
of
6
) sorted by null
/system/core/sh/
nodes.h
6
#define
NCMD
1
41
struct
ncmd
{
struct
137
struct
ncmd
ncmd
;
member in union:node
nodes.c
60
SHELL_ALIGN(sizeof (struct
ncmd
)),
132
case
NCMD
:
133
calcsize(n->
ncmd
.redirect);
134
calcsize(n->
ncmd
.args);
228
case
NCMD
:
229
new->
ncmd
.redirect = copynode(n->
ncmd
.redirect);
230
new->
ncmd
.args = copynode(n->
ncmd
.args);
231
new->
ncmd
.backgnd = n->ncmd.backgnd
[
all
...]
show.c
97
case
NCMD
:
132
for (np = cmd->
ncmd
.args ; np ; np = np->narg.next) {
138
for (np = cmd->
ncmd
.redirect ; np ; np = np->nfile.next) {
eval.c
296
case
NCMD
:
573
if (n->type ==
NCMD
) {
715
for (argp = cmd->
ncmd
.args ; argp ; argp = argp->narg.next) {
729
expredir(cmd->
ncmd
.redirect);
733
for (argp = cmd->
ncmd
.args ; argp ; argp = argp->narg.next) {
829
if (cmd->
ncmd
.backgnd
837
mode = cmd->
ncmd
.backgnd;
926
redirect(cmd->
ncmd
.redirect, REDIR_PUSH);
1003
redirect(cmd->
ncmd
.redirect, mode);
1060
redirect(cmd->
ncmd
.redirect, vforked ? REDIR_VFORK : 0)
[
all
...]
parser.c
163
if (n2->type ==
NCMD
|| n2->type == NPIPE) {
164
n2->
ncmd
.backgnd = 1;
587
n = (union node *)stalloc(sizeof (struct
ncmd
));
588
n->type =
NCMD
;
589
n->
ncmd
.backgnd = 0;
590
n->
ncmd
.args = args;
591
n->
ncmd
.redirect = redir;
[
all
...]
jobs.c
1333
case
NCMD
:
1334
cmdlist(n->
ncmd
.args, 1);
1335
cmdlist(n->
ncmd
.redirect, 0);
Completed in 823 milliseconds