Symbol: xcalloc
crypto/openssh/auth-bsdauth.c
88
*prompts = xcalloc(*numprompts, sizeof(char *));
crypto/openssh/auth-bsdauth.c
89
*echo_on = xcalloc(*numprompts, sizeof(u_int));
crypto/openssh/auth-pam.c
354
sshpam_env = xcalloc(num_env + 1, sizeof(*sshpam_env));
crypto/openssh/auth-pam.c
819
ctxt = xcalloc(1, sizeof *ctxt);
crypto/openssh/auth2-chall.c
112
kbdintctxt = xcalloc(1, sizeof(KbdintAuthctxt));
crypto/openssh/auth2-chall.c
316
response = xcalloc(nresp, sizeof(char *));
crypto/openssh/auth2.c
579
authctxt->auth_methods = xcalloc(options.num_auth_methods,
crypto/openssh/channels.c
1157
cc = xcalloc(1, sizeof(*cc));
crypto/openssh/channels.c
238
sc->channels = xcalloc(sc->channels_alloc, sizeof(*sc->channels));
crypto/openssh/channels.c
5079
*chanids = xcalloc(num_socks + 1, sizeof(**chanids));
crypto/openssh/channels.c
517
c = sc->channels[found] = xcalloc(1, sizeof(Channel));
crypto/openssh/clientloop.c
1405
ret = xcalloc(1, sizeof(*ret));
crypto/openssh/clientloop.c
2452
ctx = xcalloc(1, sizeof(*ctx));
crypto/openssh/clientloop.c
887
struct channel_reply_ctx *cr = xcalloc(1, sizeof(*cr));
crypto/openssh/clientloop.c
910
gc = xcalloc(1, sizeof(*gc));
crypto/openssh/groupaccess.c
64
groups_bygid = xcalloc(ngroups, sizeof(*groups_bygid));
crypto/openssh/groupaccess.c
71
groups_byname = xcalloc(ngroups, sizeof(*groups_byname));
crypto/openssh/gss-genr.c
164
*ctx = xcalloc(1, sizeof (Gssctxt));
crypto/openssh/gss-genr.c
80
ctx->oid = xcalloc(1, sizeof(gss_OID_desc));
crypto/openssh/hostfile.c
218
struct hostkeys *ret = xcalloc(1, sizeof(*ret));
crypto/openssh/misc.c
1543
r = xcalloc(1, hl);
crypto/openssh/misc.c
2048
char *arg, **argv = xcalloc(1, sizeof(*argv));
crypto/openssh/misc.c
2063
arg = argv[argc++] = xcalloc(1, strlen(s + i) + 1);
crypto/openssh/misc.c
2814
env = xcalloc(sizeof(*env), nenv);
crypto/openssh/misc.c
486
struct passwd *copy = xcalloc(1, sizeof(*copy));
crypto/openssh/moduli.c
305
TinySieve = xcalloc(tinywords, sizeof(u_int32_t));
crypto/openssh/moduli.c
308
SmallSieve = xcalloc(smallwords, sizeof(u_int32_t));
crypto/openssh/monitor.c
1122
resp = xcalloc(num, sizeof(char *));
crypto/openssh/monitor.c
1833
mon = xcalloc(1, sizeof(*mon));
crypto/openssh/monitor_wrap.c
305
newopts = xcalloc(sizeof(*newopts), 1);
crypto/openssh/monitor_wrap.c
315
NULL : xcalloc(newopts->nx, sizeof(*newopts->x)); \
crypto/openssh/monitor_wrap.c
374
pw = xcalloc(sizeof(*pw), 1);
crypto/openssh/monitor_wrap.c
595
*sig_detailsp = xcalloc(1, sizeof(**sig_detailsp));
crypto/openssh/monitor_wrap.c
796
*prompts = xcalloc((*num + 1), sizeof(char *));
crypto/openssh/monitor_wrap.c
797
*echo_on = xcalloc((*num + 1), sizeof(u_int));
crypto/openssh/monitor_wrap.c
871
*prompts = xcalloc(*numprompts, sizeof(char *));
crypto/openssh/monitor_wrap.c
872
*echo_on = xcalloc(*numprompts, sizeof(u_int));
crypto/openssh/mux.c
1046
cctx = xcalloc(1, sizeof(*cctx));
crypto/openssh/mux.c
1162
state = xcalloc(1, sizeof(*state));
crypto/openssh/mux.c
343
cctx = xcalloc(1, sizeof(*cctx));
crypto/openssh/mux.c
824
fctx = xcalloc(1, sizeof(*fctx));
crypto/openssh/sandbox-capsicum.c
62
box = xcalloc(1, sizeof(*box));
crypto/openssh/sandbox-darwin.c
53
box = xcalloc(1, sizeof(*box));
crypto/openssh/sandbox-null.c
50
box = xcalloc(1, sizeof(*box));
crypto/openssh/sandbox-pledge.c
50
box = xcalloc(1, sizeof(*box));
crypto/openssh/sandbox-rlimit.c
53
box = xcalloc(1, sizeof(*box));
crypto/openssh/sandbox-seccomp-filter.c
446
box = xcalloc(1, sizeof(*box));
crypto/openssh/sandbox-solaris.c
50
box = xcalloc(1, sizeof(*box));
crypto/openssh/sandbox-systrace.c
105
box = xcalloc(1, sizeof(*box));
crypto/openssh/scp.c
490
newargv = xcalloc(MAXIMUM(argc + 1, 1), sizeof(*newargv));
crypto/openssh/servconf.c
2288
item = xcalloc(1, sizeof(*item));
crypto/openssh/servconf.c
2298
item = xcalloc(1, sizeof(*item));
crypto/openssh/servconf.c
2900
dst->s = xcalloc(src->num_s, sizeof(*dst->s)); \
crypto/openssh/session.c
984
env = xcalloc(envsize, sizeof(char *));
crypto/openssh/sftp-client.c
132
req = xcalloc(1, sizeof(*req));
crypto/openssh/sftp-client.c
2916
usernames = xcalloc(nuids, sizeof(*usernames));
crypto/openssh/sftp-client.c
2929
groupnames = xcalloc(ngids, sizeof(*groupnames));
crypto/openssh/sftp-client.c
464
ret = xcalloc(1, sizeof(*ret));
crypto/openssh/sftp-client.c
735
*dir = xcalloc(1, sizeof(**dir));
crypto/openssh/sftp-client.c
814
(*dir)[ents] = xcalloc(1, sizeof(***dir));
crypto/openssh/sftp-client.c
838
*dir = xcalloc(1, sizeof(**dir));
crypto/openssh/sftp-glob.c
52
r = xcalloc(1, sizeof(*r));
crypto/openssh/sftp-server.c
1151
stats = xcalloc(nstats, sizeof(Stat));
crypto/openssh/sftp-usergroup.c
69
if ((idname = xcalloc(1, sizeof(*idname))) == NULL)
crypto/openssh/sftp.c
1030
indices = xcalloc(nentries, sizeof(*indices));
crypto/openssh/sftp.c
1911
list = xcalloc((sizeof(cmds) / sizeof(*cmds)) + 1, sizeof(char *));
crypto/openssh/sftp.c
611
ret = xcalloc(2, len + 1);
crypto/openssh/srclimit.c
123
children = xcalloc(max_children, sizeof(*children));
crypto/openssh/srclimit.c
415
penalty = xcalloc(1, sizeof(*penalty));
crypto/openssh/ssh-add.c
680
*listp = xcalloc(2, sizeof(**listp));
crypto/openssh/ssh-add.c
764
dc = xcalloc(1, sizeof(*dc));
crypto/openssh/ssh-agent.c
1414
id = xcalloc(1, sizeof(Identity));
crypto/openssh/ssh-agent.c
1543
id = xcalloc(1, sizeof(Identity));
crypto/openssh/ssh-agent.c
223
idtab = xcalloc(1, sizeof(*idtab));
crypto/openssh/ssh-agent.c
268
xcalloc(out->nkeys, sizeof(*out->keys));
crypto/openssh/ssh-agent.c
270
xcalloc(out->nkeys, sizeof(*out->key_is_ca));
crypto/openssh/ssh-agent.c
288
ret = xcalloc(ndcs, sizeof(*ret));
crypto/openssh/ssh-keyscan.c
811
fdcon = xcalloc(maxfd, sizeof(con));
crypto/openssh/ssh-keyscan.c
812
read_wait = xcalloc(maxfd, sizeof(struct pollfd));
crypto/openssh/ssh-pkcs11-client.c
537
helper = xcalloc(1, sizeof(*helper));
crypto/openssh/ssh-pkcs11-client.c
614
*keysp = xcalloc(nkeys, sizeof(struct sshkey *));
crypto/openssh/ssh-pkcs11-client.c
616
*labelsp = xcalloc(nkeys, sizeof(char *));
crypto/openssh/ssh-pkcs11-helper.c
70
ki = xcalloc(1, sizeof(*ki));
crypto/openssh/ssh-pkcs11.c
1562
p = xcalloc(1, sizeof(*p));
crypto/openssh/ssh-pkcs11.c
1601
p->slotlist = xcalloc(p->nslots, sizeof(CK_SLOT_ID));
crypto/openssh/ssh-pkcs11.c
1608
p->slotinfo = xcalloc(p->nslots, sizeof(struct pkcs11_slotinfo));
crypto/openssh/ssh-pkcs11.c
494
k11 = xcalloc(1, sizeof(*k11));
crypto/openssh/ssh-pkcs11.c
608
k11 = xcalloc(1, sizeof(*k11));
crypto/openssh/ssh-pkcs11.c
747
key_attr[i].pValue = xcalloc(1, key_attr[i].ulValueLen);
crypto/openssh/ssh-pkcs11.c
868
key_attr[i].pValue = xcalloc(1, key_attr[i].ulValueLen);
crypto/openssh/ssh-pkcs11.c
970
cert_attr[i].pValue = xcalloc(1, cert_attr[i].ulValueLen);
crypto/openssh/ssh.c
1420
cinfo = xcalloc(1, sizeof(*cinfo));
crypto/openssh/ssh.c
1659
sensitive_data.keys = xcalloc(sensitive_data.nkeys,
crypto/openssh/ssh.c
699
saved_av = xcalloc(ac + 1, sizeof(*saved_av));
crypto/openssh/sshconnect2.c
1696
id = xcalloc(1, sizeof(*id));
crypto/openssh/sshconnect2.c
1719
id = xcalloc(1, sizeof(*id));
crypto/openssh/sshconnect2.c
1750
id = xcalloc(1, sizeof(*id));
crypto/openssh/sshd-session.c
1288
authctxt = xcalloc(1, sizeof(*authctxt));
crypto/openssh/sshd-session.c
762
item = xcalloc(1, sizeof(*item));
crypto/openssh/sshd-session.c
895
saved_argv = xcalloc(ac + 1, sizeof(*saved_argv));
crypto/openssh/sshd.c
1210
saved_argv = xcalloc(ac + 1, sizeof(*saved_argv));
crypto/openssh/sshd.c
1453
sensitive_data.host_keys = xcalloc(options.num_host_key_files,
crypto/openssh/sshd.c
1455
sensitive_data.host_pubkeys = xcalloc(options.num_host_key_files,
crypto/openssh/sshd.c
1563
sensitive_data.host_certificates = xcalloc(options.num_host_key_files,
crypto/openssh/sshd.c
1647
rexec_argv = xcalloc(rexec_argc + 3, sizeof(char *));
crypto/openssh/sshd.c
222
children = xcalloc(options.max_startups, sizeof(*children));
crypto/openssh/sshd.c
860
startup_pollfd = xcalloc(options.max_startups, sizeof(int));
crypto/openssh/sshd.c
878
pfd = xcalloc(num_listen_socks + options.max_startups,
crypto/openssh/umac.c
1225
octx = ctx = xcalloc(1, sizeof(*ctx) + ALLOC_BOUNDARY);
crypto/openssh/xmalloc.h
20
void *xcalloc(size_t, size_t);
lib/libssh/openbsd-compat/getrrsetbyname-ldns.c
60
#define calloc(x, y) (xcalloc((x),(y)))
libexec/rtld-elf/rtld.c
4425
newdtv = xcalloc(tls_max_index + 2, sizeof(Elf_Addr));
libexec/rtld-elf/rtld.c
4819
obj->vertab = xcalloc(obj->vernum, sizeof(Ver_Entry));
libexec/rtld-elf/rtld.h
341
void *xcalloc(size_t, size_t);
libexec/rtld-elf/rtld.h
50
#define CNEW(type) ((type *) xcalloc(1, sizeof(type)))
usr.bin/calendar/dates.c
183
e = xcalloc(1, sizeof(*e));
usr.bin/calendar/dates.c
70
cal_days = xcalloc((size_t)daycount, sizeof(struct cal_day));
usr.bin/calendar/io.c
569
struct cal_desc *desc = xcalloc(1, sizeof(*desc));
usr.bin/calendar/io.c
603
cline = xcalloc(1, sizeof(*cline));
usr.bin/calendar/nnames.c
165
nname->n_name = xcalloc(1, len + 1);
usr.bin/calendar/utils.c
158
newp = xcalloc(1, sizeof(*newp));
usr.bin/calendar/utils.h
258
void * xcalloc(size_t number, size_t size);
usr.bin/diff/diffreg.c
386
klist = xcalloc(slen[0] + 2, sizeof(*klist));
usr.bin/diff/diffreg.c
389
clist = xcalloc(clistlen, sizeof(*clist));
usr.bin/diff/diffreg.c
510
p = xcalloc(sz + 3, sizeof(*p));
usr.bin/diff/diffreg.c
831
a = xcalloc(l + 1, sizeof(*a));
usr.bin/diff/xmalloc.h
23
void *xcalloc(size_t, size_t);