OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:npipe
(Results
1 - 6
of
6
) sorted by null
/system/core/sh/
nodes.h
7
#define
NPIPE
2
49
struct
npipe
{
struct
138
struct
npipe
npipe
;
member in union:node
nodes.c
61
SHELL_ALIGN(sizeof (struct
npipe
)),
136
case
NPIPE
:
137
sizenodelist(n->
npipe
.cmdlist);
233
case
NPIPE
:
234
new->
npipe
.cmdlist = copynodelist(n->
npipe
.cmdlist);
235
new->
npipe
.backgnd = n->
npipe
.backgnd;
show.c
102
case
NPIPE
:
103
for (lp = n->
npipe
.cmdlist ; lp ; lp = lp->next) {
108
if (n->
npipe
.backgnd)
eval.c
293
case
NPIPE
:
499
for (lp = n->
npipe
.cmdlist ; lp ; lp = lp->next)
504
for (lp = n->
npipe
.cmdlist ; lp ; lp = lp->next) {
513
if (forkshell(jp, lp->n, n->
npipe
.backgnd) == 0) {
535
if (n->
npipe
.backgnd == 0) {
parser.c
163
if (n2->type == NCMD || n2->type ==
NPIPE
) {
260
pipenode = (union node *)stalloc(sizeof (struct
npipe
));
261
pipenode->type =
NPIPE
;
262
pipenode->
npipe
.backgnd = 0;
264
pipenode->
npipe
.cmdlist = lp;
[
all
...]
jobs.c
1270
case
NPIPE
:
1271
for (lp = n->
npipe
.cmdlist ; lp ; lp = lp->next) {
Completed in 36 milliseconds