Symbol: xrecallocarray
crypto/openssh/channels.c
2810
*pfdp = xrecallocarray(*pfdp, *npfd_allocp,
crypto/openssh/channels.c
322
sc->timeouts = xrecallocarray(sc->timeouts, sc->ntimeouts,
crypto/openssh/channels.c
4543
*permp = xrecallocarray(*permp, *npermp, 0, sizeof(**permp));
crypto/openssh/channels.c
511
sc->channels = xrecallocarray(sc->channels, sc->channels_alloc,
crypto/openssh/channels.c
688
*permp = xrecallocarray(*permp, *npermp, *npermp + 1, sizeof(**permp));
crypto/openssh/misc.c
1128
args->list = xrecallocarray(args->list, args->nalloc,
crypto/openssh/misc.c
2654
*iarray = xrecallocarray(*iarray, *lp, *lp + 1,
crypto/openssh/misc.c
2659
*array = xrecallocarray(*array, *lp, *lp + 1, sizeof(**array));
crypto/openssh/readconf.c
1625
*cppptr = xrecallocarray(*cppptr, *uintptr,
crypto/openssh/readconf.c
2164
cnames = xrecallocarray(cnames, ncnames, ncnames + 1,
crypto/openssh/readconf.c
867
options->send_env = xrecallocarray(options->send_env,
crypto/openssh/scp.c
2245
bp->buf = xrecallocarray(bp->buf, bp->cnt, size, 1);
crypto/openssh/servconf.c
1910
options->subsystem_name = xrecallocarray(
crypto/openssh/servconf.c
1914
options->subsystem_command = xrecallocarray(
crypto/openssh/servconf.c
1918
options->subsystem_args = xrecallocarray(
crypto/openssh/servconf.c
2809
dst->subsystem_name = xrecallocarray(
crypto/openssh/servconf.c
2812
dst->subsystem_command = xrecallocarray(
crypto/openssh/servconf.c
2815
dst->subsystem_args = xrecallocarray(
crypto/openssh/servconf.c
846
options->listen_addrs = xrecallocarray(options->listen_addrs,
crypto/openssh/servconf.c
916
options->queued_listen_addrs = xrecallocarray(
crypto/openssh/session.c
1739
tmp = xrecallocarray(sessions, sessions_nalloc,
crypto/openssh/session.c
2085
s->env = xrecallocarray(s->env, s->num_env,
crypto/openssh/sftp-usergroup.c
167
ids = xrecallocarray(ids, n, n + 1, sizeof(*ids));
crypto/openssh/sftp-usergroup.c
206
ids = xrecallocarray(ids, n, n + 1, sizeof(*ids));
crypto/openssh/ssh-add.c
684
*listp = xrecallocarray(*listp, i + 1, i + 2, sizeof(**listp));
crypto/openssh/ssh-add.c
740
dch->keys = xrecallocarray(dch->keys, dch->nkeys,
crypto/openssh/ssh-add.c
742
dch->key_is_ca = xrecallocarray(dch->key_is_ca, dch->nkeys,
crypto/openssh/ssh-add.c
785
*dcp = xrecallocarray(*dcp, *ndcp, *ndcp + 1, sizeof(**dcp));
crypto/openssh/ssh-add.c
995
certs = xrecallocarray(certs, ncerts, ncerts + 1,
crypto/openssh/ssh-agent.c
1099
dch->keys = xrecallocarray(dch->keys, dch->nkeys,
crypto/openssh/ssh-agent.c
1101
dch->key_is_ca = xrecallocarray(dch->key_is_ca, dch->nkeys,
crypto/openssh/ssh-agent.c
1222
*dcsp = xrecallocarray(*dcsp, *ndcsp, *ndcsp + 1,
crypto/openssh/ssh-agent.c
1250
*certs = xrecallocarray(*certs, *ncerts, *ncerts + 1,
crypto/openssh/ssh-agent.c
1746
e->session_ids = xrecallocarray(e->session_ids, e->nsession_ids,
crypto/openssh/ssh-agent.c
1917
sockets = xrecallocarray(sockets, old_alloc, new_alloc,
crypto/openssh/ssh-keygen.c
3485
opts = xrecallocarray(opts, nopts, nopts + 1,
crypto/openssh/ssh-pkcs11-client.c
146
helpers = xrecallocarray(helpers, nhelpers,
crypto/openssh/ssh-pkcs11-client.c
578
helpers = xrecallocarray(helpers, nhelpers,
crypto/openssh/ssh-pkcs11.c
1183
*keysp = xrecallocarray(*keysp, *nkeys,
crypto/openssh/ssh-pkcs11.c
1187
*labelsp = xrecallocarray(*labelsp, *nkeys,
crypto/openssh/ssh-pkcs11.c
1297
*keysp = xrecallocarray(*keysp, *nkeys,
crypto/openssh/ssh-pkcs11.c
1301
*labelsp = xrecallocarray(*labelsp, *nkeys,
crypto/openssh/sshconnect.c
761
ctx->names = xrecallocarray(ctx->names,
crypto/openssh/sshd-session.c
690
sensitive_data.host_keys = xrecallocarray(
crypto/openssh/sshd-session.c
693
sensitive_data.host_pubkeys = xrecallocarray(
crypto/openssh/sshd-session.c
696
sensitive_data.host_certificates = xrecallocarray(
crypto/openssh/xmalloc.h
22
void *xrecallocarray(void *, size_t, size_t, size_t);