Symbol: stalloc
bin/sh/arith_yylex.c
168
yylval.name = stalloc(buf - p + 1);
bin/sh/bltin/bltin.h
75
pointer stalloc(int);
bin/sh/cd.c
392
pwd = stalloc(i);
bin/sh/exec.c
243
return stalloc(len);
bin/sh/expand.c
131
newargs = stalloc(newcapacity * sizeof(newargs[0]));
bin/sh/histedit.c
449
editcmd = stalloc(strlen(editor) + strlen(editfile) + 2);
bin/sh/memalloc.c
191
p = stalloc(len + 1);
bin/sh/memalloc.c
205
stalloc(1);
bin/sh/memalloc.c
276
p = stalloc(newlen);
bin/sh/memalloc.h
52
pointer stalloc(int);
bin/sh/memalloc.h
66
#define grabstackblock(n) stalloc(n)
bin/sh/memalloc.h
82
#define grabstackstr(p) stalloc((char *)p - stackblock())
bin/sh/parser.c
1033
np = (union node *)stalloc(sizeof (struct nfile));
bin/sh/parser.c
1052
np = (union node *)stalloc(sizeof (struct nhere));
bin/sh/parser.c
1056
heredoc = (struct heredoc *)stalloc(sizeof (struct heredoc));
bin/sh/parser.c
1176
*nlpp = (struct nodelist *)stalloc(sizeof (struct nodelist));
bin/sh/parser.c
286
n3 = (union node *)stalloc(sizeof (struct nredir));
bin/sh/parser.c
378
pipenode = (union node *)stalloc(sizeof (struct npipe));
bin/sh/parser.c
381
lp = (struct nodelist *)stalloc(sizeof (struct nodelist));
bin/sh/parser.c
386
lp = (struct nodelist *)stalloc(sizeof (struct nodelist));
bin/sh/parser.c
401
n2 = (union node *)stalloc(sizeof (struct nnot));
bin/sh/parser.c
437
n1 = (union node *)stalloc(sizeof (struct nif));
bin/sh/parser.c
445
n2->nif.elsepart = (union node *)stalloc(sizeof (struct nif));
bin/sh/parser.c
475
n1 = (union node *)stalloc(sizeof (struct nfor));
bin/sh/parser.c
497
n2 = (union node *)stalloc(sizeof (struct narg));
bin/sh/parser.c
522
n1 = (union node *)stalloc(sizeof (struct ncase));
bin/sh/parser.c
532
*cpp = cp = (union node *)stalloc(sizeof (struct nclist));
bin/sh/parser.c
566
n1 = (union node *)stalloc(sizeof (struct nredir));
bin/sh/parser.c
610
n2 = (union node *)stalloc(sizeof (struct nredir));
bin/sh/parser.c
690
n = (union node *)stalloc(sizeof (struct ncmd));
bin/sh/parser.c
702
n = (union node *)stalloc(sizeof (struct narg));
bin/sh/parser.c
715
n = (union node *)stalloc(sizeof (struct nbinary));
bin/sh/var.c
556
ep = env = stalloc((nenv + 1) * sizeof *env);