Symbol: ckmalloc
bin/sh/alias.c
78
ap = ckmalloc(sizeof (struct alias));
bin/sh/eval.c
826
(sys_path = ckmalloc(len + 5)) != NULL &&
bin/sh/exec.c
329
new = ckmalloc(i + ((char *)ap2 - (char *)argv));
bin/sh/exec.c
989
cmdp = *pp = ckmalloc(sizeof (struct tblentry) - ARB
bin/sh/expand.c
1371
ifsp = (struct ifsregion *)ckmalloc(sizeof (struct ifsregion));
bin/sh/expand.c
1637
expdir = ckmalloc(i < 2048 ? 2048 : i); /* XXX */
bin/sh/input.c
435
sp = ckmalloc(sizeof (struct strpush));
bin/sh/input.c
567
parsefile->buf = ckmalloc(BUFSIZ);
bin/sh/input.c
619
pf = (struct parsefile *)ckmalloc(sizeof (struct parsefile));
bin/sh/jobs.c
1276
jobtab = ckmalloc(4 * sizeof jobtab[0]);
bin/sh/jobs.c
1278
jp = ckmalloc((njobs + 4) * sizeof jobtab[0]);
bin/sh/jobs.c
1312
jp->ps = ckmalloc(nprocs * sizeof (struct procstat));
bin/sh/memalloc.c
138
sp = ckmalloc(sizeof(struct stack_block) - MINSIZE + blocksize);
bin/sh/memalloc.c
95
p = ckmalloc(strlen(s) + 1);
bin/sh/memalloc.h
50
pointer ckmalloc(size_t);
bin/sh/options.c
387
ap = newparam = ckmalloc((nparam + 1) * sizeof *ap);
bin/sh/output.c
274
dest->buf = ckmalloc(dest->bufsize);
bin/sh/output.c
707
o = ckmalloc(sizeof(*o));
bin/sh/parser.c
1311
ss = (VSS *)ckmalloc(sizeof (struct statestack));
bin/sh/parser.c
1427
sstr = str = ckmalloc(savelen);
bin/sh/redir.c
232
struct renamelist *rl = ckmalloc(sizeof(struct renamelist));
bin/sh/redir.c
274
sv = ckmalloc(sizeof (struct redirtab));
bin/sh/redir.c
773
fp = ckmalloc(sizeof (struct shell_fds));
bin/sh/var.c
1217
lvp = ckmalloc(sizeof (struct localvar));
bin/sh/var.c
1220
p = ckmalloc(sizeof_optlist);
bin/sh/var.c
492
d = nameeq = ckmalloc(len);
bin/sh/var.c
588
vp = ckmalloc(sizeof (*vp));
bin/sh/var.c
970
list = ckmalloc(list_len * sizeof *list);
bin/test/test.c
197
extern void *ckmalloc(size_t);
bin/test/test.c
212
static void *ckmalloc(size_t);
bin/test/test.c
705
groups = ckmalloc((maxgroups + 1) * sizeof(gid_t));