Symbol: stalloc
bin/sh/arith_yylex.c
168
yylval.name = stalloc(buf - p + 1);
bin/sh/bltin/bltin.h
78
pointer stalloc(int);
bin/sh/cd.c
400
pwd = stalloc(i);
bin/sh/exec.c
249
return stalloc(len);
bin/sh/expand.c
137
newargs = stalloc(newcapacity * sizeof(newargs[0]));
bin/sh/histedit.c
378
editcmd = stalloc(strlen(editor) + strlen(editfile) + 2);
bin/sh/memalloc.c
199
p = stalloc(len + 1);
bin/sh/memalloc.c
213
stalloc(1);
bin/sh/memalloc.c
281
p = stalloc(newlen);
bin/sh/memalloc.h
55
pointer stalloc(int);
bin/sh/memalloc.h
69
#define grabstackblock(n) stalloc(n)
bin/sh/memalloc.h
85
#define grabstackstr(p) stalloc((char *)p - stackblock())
bin/sh/parser.c
1037
np = (union node *)stalloc(sizeof (struct nfile));
bin/sh/parser.c
1056
np = (union node *)stalloc(sizeof (struct nhere));
bin/sh/parser.c
1060
heredoc = (struct heredoc *)stalloc(sizeof (struct heredoc));
bin/sh/parser.c
1180
*nlpp = (struct nodelist *)stalloc(sizeof (struct nodelist));
bin/sh/parser.c
291
n3 = (union node *)stalloc(sizeof (struct nredir));
bin/sh/parser.c
383
pipenode = (union node *)stalloc(sizeof (struct npipe));
bin/sh/parser.c
386
lp = (struct nodelist *)stalloc(sizeof (struct nodelist));
bin/sh/parser.c
391
lp = (struct nodelist *)stalloc(sizeof (struct nodelist));
bin/sh/parser.c
406
n2 = (union node *)stalloc(sizeof (struct nnot));
bin/sh/parser.c
442
n1 = (union node *)stalloc(sizeof (struct nif));
bin/sh/parser.c
450
n2->nif.elsepart = (union node *)stalloc(sizeof (struct nif));
bin/sh/parser.c
480
n1 = (union node *)stalloc(sizeof (struct nfor));
bin/sh/parser.c
500
n2 = (union node *)stalloc(sizeof (struct narg));
bin/sh/parser.c
525
n1 = (union node *)stalloc(sizeof (struct ncase));
bin/sh/parser.c
535
*cpp = cp = (union node *)stalloc(sizeof (struct nclist));
bin/sh/parser.c
569
n1 = (union node *)stalloc(sizeof (struct nredir));
bin/sh/parser.c
614
n2 = (union node *)stalloc(sizeof (struct nredir));
bin/sh/parser.c
694
n = (union node *)stalloc(sizeof (struct ncmd));
bin/sh/parser.c
706
n = (union node *)stalloc(sizeof (struct narg));
bin/sh/parser.c
719
n = (union node *)stalloc(sizeof (struct nbinary));
bin/sh/var.c
564
ep = env = stalloc((nenv + 1) * sizeof *env);