Symbol: stalloc
bin/sh/alias.c
205
aliases = stalloc(n * (int)(sizeof aliases[0]));
bin/sh/arith_token.c
113
a_t_val.name = stalloc(buf - p + 1);
bin/sh/bltin/bltin.h
102
pointer stalloc(int);
bin/sh/cd.c
117
d = stalloc(strlen(curdir) + strlen(argptr[1]) + 1);
bin/sh/cd.c
149
cp = stalloc((int)strlen(p) + 1);
bin/sh/cd.c
157
cp = stalloc((int)strlen(p) + 1);
bin/sh/cd.c
171
cp = stalloc(strlen(p) + 1);
bin/sh/cd.c
204
cdcomppath = stalloc(strlen(dest) + 1);
bin/sh/cd.c
315
cdcomppath = stalloc(strlen(dir) + 1);
bin/sh/cd.c
495
pwd = stalloc(i);
bin/sh/cd.c
515
pwd = stalloc(MAXPWD);
bin/sh/eval.c
946
argv = stalloc(sizeof (char *) * (argc + 1));
bin/sh/expand.c
1406
sp = stalloc(sizeof(*sp));
bin/sh/expand.c
1458
sp = stalloc(sizeof(*sp));
bin/sh/expand.c
1497
sp = stalloc(sizeof(*sp));
bin/sh/expand.c
157
return stalloc(len + 1); /* include the \0 */
bin/sh/expand.c
1852
p = stalloc(strlen(name) + 1);
bin/sh/expand.c
1854
sp = stalloc(sizeof(*sp));
bin/sh/expand.c
230
sp = stalloc(sizeof(*sp));
bin/sh/histedit.c
871
editcmd = stalloc(cmdlen);
bin/sh/memalloc.c
255
char *p = stalloc(newlen);
bin/sh/memalloc.c
396
str = (char *)stalloc((int)tlen + 1); /* 1 for \0 */
bin/sh/memalloc.h
53
pointer stalloc(int);
bin/sh/memalloc.h
79
#define grabstackstr(p) stalloc((p) - stackblock())
bin/sh/options.c
454
ap2 = ss = (char **)stalloc(n * sizeof(char *));
bin/sh/parser.c
1519
*nlpp = stalloc(sizeof(struct nodelist));
bin/sh/parser.c
1593
np = stalloc(sizeof(struct nfile));
bin/sh/parser.c
1629
np = stalloc(sizeof(struct nhere));
bin/sh/parser.c
1632
heredoc = stalloc(sizeof(struct HereDoc));
bin/sh/parser.c
204
n3 = stalloc(sizeof(struct nredir));
bin/sh/parser.c
215
n1 = stalloc(sizeof(struct nbinary));
bin/sh/parser.c
221
n3 = stalloc(sizeof(struct nbinary));
bin/sh/parser.c
2764
(void) stalloc(stackblocksize());
bin/sh/parser.c
279
n3 = stalloc(sizeof(struct nbinary));
bin/sh/parser.c
2835
(void) stalloc(stackblocksize());
bin/sh/parser.c
309
pipenode = stalloc(sizeof(struct npipe));
bin/sh/parser.c
312
lp = stalloc(sizeof(struct nodelist));
bin/sh/parser.c
317
lp = stalloc(sizeof(struct nodelist));
bin/sh/parser.c
328
n2 = stalloc(sizeof(struct nnot));
bin/sh/parser.c
375
n1 = stalloc(sizeof(struct nif));
bin/sh/parser.c
382
n2->nif.elsepart = stalloc(sizeof(struct nif));
bin/sh/parser.c
400
n1 = stalloc(sizeof(struct nbinary));
bin/sh/parser.c
411
n1 = stalloc(sizeof(struct nfor));
bin/sh/parser.c
434
n2 = stalloc(sizeof(struct narg));
bin/sh/parser.c
460
n1 = stalloc(sizeof(struct ncase));
bin/sh/parser.c
488
*cpp = cp = stalloc(sizeof(struct nclist));
bin/sh/parser.c
525
n1 = stalloc(sizeof(struct nredir));
bin/sh/parser.c
596
n2 = stalloc(sizeof(struct nredir));
bin/sh/parser.c
609
n2 = stalloc(sizeof(struct nnot));
bin/sh/parser.c
705
n = stalloc(sizeof(struct ncmd));
bin/sh/parser.c
718
n2 = stalloc(sizeof(struct nnot));
bin/sh/parser.c
733
n = stalloc(sizeof(struct narg));
bin/sh/var.c
746
ep = env = stalloc((nenv + 1) * sizeof *env);