HomeSort by relevance Sort by last modified time
    Searched refs:nhere (Results 1 - 4 of 4) sorted by null

  /system/core/sh/
nodes.h 28 #define NHERE 23
120 struct nhere { struct
147 struct nhere nhere; member in union:node
nodes.c 82 SHELL_ALIGN(sizeof (struct nhere)),
83 SHELL_ALIGN(sizeof (struct nhere)),
183 case NHERE:
185 calcsize(n->nhere.doc);
186 calcsize(n->nhere.next);
284 case NHERE:
286 new->nhere.doc = copynode(n->nhere.doc);
287 new->nhere.fd = n->nhere.fd
    [all...]
redir.c 230 case NHERE:
265 if (redir->type == NHERE) {
266 len = strlen(redir->nhere.doc->narg.text);
268 xwrite(pip[1], redir->nhere.doc->narg.text, len);
281 if (redir->type == NHERE)
282 xwrite(pip[1], redir->nhere.doc->narg.text, len);
284 expandhere(redir->nhere.doc, pip[1]);
parser.c 644 if (n->type == NHERE) {
692 readtoken1(pgetc(), here->here->type == NHERE? SQSYNTAX : DQSYNTAX,
699 here->here->nhere.doc = n;
1218 if (sizeof (struct nfile) != sizeof (struct nhere)) {
1219 np = (union node *)stalloc(sizeof (struct nhere));
1222 np->type = NHERE;
    [all...]

Completed in 38 milliseconds