OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:heredoc
(Results
1 - 6
of
6
) sorted by null
/system/core/sh/
parser.c
79
struct
heredoc
{
struct
80
struct
heredoc
*next; /* next here document in list */
89
struct
heredoc
*heredoclist; /* list of here documents to read */
99
struct
heredoc
*
heredoc
;
variable in typeref:struct:heredoc
645
struct
heredoc
*here =
heredoc
;
646
struct
heredoc
*p;
682
struct
heredoc
*here;
1223
heredoc
= (struct heredoc *)stalloc(sizeof (struct heredoc))
[
all
...]
/external/mksh/src/
tree.c
187
/*
heredoc
is 0 when tracing (set -x) */
188
if ((iop->flag & IOTYPE) == IOHERE && iop->
heredoc
&&
192
shf_puts(iop->
heredoc
, shf);
654
if (p->
heredoc
!= NULL)
655
strdupx(q->
heredoc
, p->
heredoc
, ap);
711
if (p->
heredoc
!= NULL)
712
afree(p->
heredoc
, ap);
lex.c
353
if ((cf &
HEREDOC
))
1004
iop->
heredoc
= NULL;
1170
xp = iop->
heredoc
= evalstr(iop->delim, DOBLANK);
1218
iop->
heredoc
= Xclose(xs, xp);
[
all
...]
syn.c
207
nextiop->
heredoc
= NULL;
exec.c
1159
u = herein(iop->
heredoc
, iop->flag & IOEVAL);
1291
/* Do substitutions on the content of
heredoc
*/
1295
if (yylex(ONEWORD|
HEREDOC
) != LWORD)
[
all
...]
sh.h
638
TT_HEREDOC_EXP, /* expanded
heredoc
*/
642
/* temp/
heredoc
files. The file is removed when the struct is freed. */
1122
char *
heredoc
;\/* content of
heredoc
*\/
member in struct:ioword
[
all
...]
Completed in 34 milliseconds