Symbol: ckmalloc
bin/sh/alias.c
185
sorted = ckmalloc(aliases * sizeof(*sorted));
bin/sh/alias.c
69
ap = ckmalloc(sizeof (struct alias));
bin/sh/exec.c
583
cmdp = *pp = ckmalloc(sizeof (struct tblentry) + len + 1);
bin/sh/expand.c
912
buf = ckmalloc(buflen);
bin/sh/input.c
316
sp = ckmalloc(sizeof (struct strpush));
bin/sh/input.c
397
parsefile->buf = ckmalloc(BUFSIZ + 1);
bin/sh/input.c
403
parsefile->buf = ckmalloc(BUFSIZ + 1);
bin/sh/input.c
442
pf = (struct parsefile *)ckmalloc(sizeof (struct parsefile));
bin/sh/jobs.c
1349
cmdnextc = name = ckmalloc(MAXCMDTEXT);
bin/sh/jobs.c
769
jobtab = ckmalloc(4 * sizeof jobtab[0]);
bin/sh/jobs.c
774
jp = ckmalloc((njobs + 4) * sizeof jobtab[0]);
bin/sh/jobs.c
816
jp->ps = ckmalloc(nprocs * sizeof (struct procstat));
bin/sh/memalloc.c
113
p = ckmalloc(len + 1);
bin/sh/memalloc.c
155
sp = ckmalloc(allocsize);
bin/sh/memalloc.h
51
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
218
dest->buf = ckmalloc(dest->bufsize);
bin/sh/parser.c
1121
str = ckmalloc(savelen);
bin/sh/parser.c
1172
ostr = ckmalloc(olen);
bin/sh/parser.c
144
t = ckmalloc(sizeof(*t));
bin/sh/parser.c
148
t->data = ckmalloc(len);
bin/sh/pregenerated/nodes.c
122
fn = ckmalloc(sz.blocksize + sz.stringsize);
bin/sh/redir.c
126
sv = ckmalloc(sizeof (struct redirtab));
bin/sh/var.c
260
nameeq = ckmalloc(len);
bin/sh/var.c
383
vp = ckmalloc(sizeof (*vp));
bin/sh/var.c
617
vars = ckmalloc(n * sizeof(*vars));
bin/sh/var.c
760
lvp = ckmalloc(sizeof (struct localvar));
bin/sh/var.c
762
lvp->text = ckmalloc(sizeof optval);