Symbol: ckmalloc
bin/sh/alias.c
179
sorted = ckmalloc(aliases * sizeof(*sorted));
bin/sh/alias.c
63
ap = ckmalloc(sizeof (struct alias));
bin/sh/exec.c
584
cmdp = *pp = ckmalloc(sizeof (struct tblentry) + len + 1);
bin/sh/expand.c
906
buf = ckmalloc(buflen);
bin/sh/input.c
310
sp = ckmalloc(sizeof (struct strpush));
bin/sh/input.c
396
parsefile->buf = ckmalloc(BUFSIZ + 1);
bin/sh/input.c
402
parsefile->buf = ckmalloc(BUFSIZ + 1);
bin/sh/input.c
441
pf = (struct parsefile *)ckmalloc(sizeof (struct parsefile));
bin/sh/jobs.c
1345
cmdnextc = name = ckmalloc(MAXCMDTEXT);
bin/sh/jobs.c
756
jobtab = ckmalloc(4 * sizeof jobtab[0]);
bin/sh/jobs.c
761
jp = ckmalloc((njobs + 4) * sizeof jobtab[0]);
bin/sh/jobs.c
803
jp->ps = ckmalloc(nprocs * sizeof (struct procstat));
bin/sh/memalloc.c
105
p = ckmalloc(len + 1);
bin/sh/memalloc.c
147
sp = ckmalloc(allocsize);
bin/sh/memalloc.h
48
pointer ckmalloc(size_t);
bin/sh/options.c
327
ap = newparam = ckmalloc((argc + 1) * sizeof *ap);
bin/sh/options.c
447
shellparam.optp = ckmalloc((argc - 2) * sizeof *ap);
bin/sh/output.c
209
dest->buf = ckmalloc(dest->bufsize);
bin/sh/parser.c
1117
str = ckmalloc(savelen);
bin/sh/parser.c
1168
ostr = ckmalloc(olen);
bin/sh/parser.c
139
t = ckmalloc(sizeof(*t));
bin/sh/parser.c
143
t->data = ckmalloc(len);
bin/sh/redir.c
118
sv = ckmalloc(sizeof (struct redirtab));
bin/sh/var.c
252
nameeq = ckmalloc(len);
bin/sh/var.c
375
vp = ckmalloc(sizeof (*vp));
bin/sh/var.c
609
vars = ckmalloc(n * sizeof(*vars));
bin/sh/var.c
752
lvp = ckmalloc(sizeof (struct localvar));
bin/sh/var.c
754
lvp->text = ckmalloc(sizeof optval);