Symbol: xrecallocarray
crypto/openssh/authfd.c
810
ret = xrecallocarray(ret, i + 1, i + 2, sizeof(*ret));
crypto/openssh/channels.c
2898
*pfdp = xrecallocarray(*pfdp, *npfd_allocp,
crypto/openssh/channels.c
321
sc->timeouts = xrecallocarray(sc->timeouts, sc->ntimeouts,
crypto/openssh/channels.c
534
sc->channels = xrecallocarray(sc->channels, sc->channels_alloc,
crypto/openssh/channels.c
719
*permp = xrecallocarray(*permp, *npermp, *npermp + 1, sizeof(**permp));
crypto/openssh/misc.c
1213
args->list = xrecallocarray(args->list, args->nalloc,
crypto/openssh/misc.c
134
*listp = xrecallocarray(*listp, i + 1, i + 2, sizeof(**listp));
crypto/openssh/misc.c
2750
*iarray = xrecallocarray(*iarray, *lp, *lp + 1,
crypto/openssh/misc.c
2755
*array = xrecallocarray(*array, *lp, *lp + 1, sizeof(**array));
crypto/openssh/readconf.c
1714
*cppptr = xrecallocarray(*cppptr, *uintptr,
crypto/openssh/readconf.c
2270
cnames = xrecallocarray(cnames, ncnames, ncnames + 1,
crypto/openssh/readconf.c
949
options->send_env = xrecallocarray(options->send_env,
crypto/openssh/regress/misc/fuzz-harness/kex_fuzz.cc
132
st->pubkeys = (struct sshkey **)xrecallocarray(st->pubkeys,
crypto/openssh/regress/misc/fuzz-harness/kex_fuzz.cc
134
st->privkeys = (struct sshkey **)xrecallocarray(st->privkeys,
crypto/openssh/regress/unittests/crypto/test_mldsa.c
58
kats = xrecallocarray(kats, nkats, nkats + 1, sizeof(*kats));
crypto/openssh/regress/unittests/test_helper/test_helper.c
732
bench_samples = xrecallocarray(bench_samples, bench_nalloc,
crypto/openssh/scp.c
2245
bp->buf = xrecallocarray(bp->buf, bp->cnt, size, 1);
crypto/openssh/servconf.c
1777
options->subsystem_name = xrecallocarray(
crypto/openssh/servconf.c
1781
options->subsystem_command = xrecallocarray(
crypto/openssh/servconf.c
1785
options->subsystem_args = xrecallocarray(
crypto/openssh/servconf.c
2722
dst->subsystem_name = xrecallocarray(
crypto/openssh/servconf.c
2725
dst->subsystem_command = xrecallocarray(
crypto/openssh/servconf.c
2728
dst->subsystem_args = xrecallocarray(
crypto/openssh/servconf.c
645
options->listen_addrs = xrecallocarray(options->listen_addrs,
crypto/openssh/servconf.c
715
options->queued_listen_addrs = xrecallocarray(
crypto/openssh/session.c
1725
tmp = xrecallocarray(sessions, sessions_nalloc,
crypto/openssh/session.c
2074
s->env = xrecallocarray(s->env, s->num_env,
crypto/openssh/sftp-usergroup.c
168
ids = xrecallocarray(ids, n, n + 1, sizeof(*ids));
crypto/openssh/sftp-usergroup.c
207
ids = xrecallocarray(ids, n, n + 1, sizeof(*ids));
crypto/openssh/ssh-add.c
747
dch->keys = xrecallocarray(dch->keys, dch->nkeys,
crypto/openssh/ssh-add.c
749
dch->key_is_ca = xrecallocarray(dch->key_is_ca, dch->nkeys,
crypto/openssh/ssh-add.c
792
*dcp = xrecallocarray(*dcp, *ndcp, *ndcp + 1, sizeof(**dcp));
crypto/openssh/ssh-add.c
998
certs = xrecallocarray(certs, ncerts, ncerts + 1,
crypto/openssh/ssh-agent.c
1131
dch->keys = xrecallocarray(dch->keys, dch->nkeys,
crypto/openssh/ssh-agent.c
1133
dch->key_is_ca = xrecallocarray(dch->key_is_ca, dch->nkeys,
crypto/openssh/ssh-agent.c
1256
*dcsp = xrecallocarray(*dcsp, *ndcsp, *ndcsp + 1,
crypto/openssh/ssh-agent.c
1286
*certs = xrecallocarray(*certs, *ncerts, *ncerts + 1,
crypto/openssh/ssh-agent.c
1767
e->session_ids = xrecallocarray(e->session_ids, e->nsession_ids,
crypto/openssh/ssh-agent.c
1974
sockets = xrecallocarray(sockets, old_alloc, new_alloc,
crypto/openssh/ssh-keygen.c
3440
opts = xrecallocarray(opts, nopts, nopts + 1,
crypto/openssh/ssh-pkcs11-client.c
107
helper->keyblobs = xrecallocarray(helper->keyblobs, helper->nkeyblobs,
crypto/openssh/ssh-pkcs11-client.c
147
helpers = xrecallocarray(helpers, nhelpers,
crypto/openssh/ssh-pkcs11-client.c
376
helpers = xrecallocarray(helpers, nhelpers,
crypto/openssh/ssh-pkcs11-client.c
486
helper->keyblobs = xrecallocarray(helper->keyblobs,
crypto/openssh/ssh-pkcs11.c
1501
*keysp = xrecallocarray(*keysp, *nkeys,
crypto/openssh/ssh-pkcs11.c
1505
*labelsp = xrecallocarray(*labelsp, *nkeys,
crypto/openssh/ssh-pkcs11.c
1622
*keysp = xrecallocarray(*keysp, *nkeys,
crypto/openssh/ssh-pkcs11.c
1626
*labelsp = xrecallocarray(*labelsp, *nkeys,
crypto/openssh/sshconnect.c
799
ctx->names = xrecallocarray(ctx->names,
crypto/openssh/sshd-auth.c
391
host_pubkeys = xrecallocarray(host_pubkeys,
crypto/openssh/sshd-auth.c
393
host_certificates = xrecallocarray(host_certificates,
crypto/openssh/sshd-session.c
600
sensitive_data.host_keys = xrecallocarray(
crypto/openssh/sshd-session.c
603
sensitive_data.host_pubkeys = xrecallocarray(
crypto/openssh/sshd-session.c
606
sensitive_data.host_certificates = xrecallocarray(
crypto/openssh/xmalloc.h
22
void *xrecallocarray(void *, size_t, size_t, size_t);