Symbol: xrecallocarray
regress/usr.bin/ssh/unittests/test_helper/test_helper.c
682
bench_samples = xrecallocarray(bench_samples, bench_nalloc,
usr.bin/ssh/authfd.c
807
ret = xrecallocarray(ret, i + 1, i + 2, sizeof(*ret));
usr.bin/ssh/channels.c
2853
*pfdp = xrecallocarray(*pfdp, *npfd_allocp,
usr.bin/ssh/channels.c
319
sc->timeouts = xrecallocarray(sc->timeouts, sc->ntimeouts,
usr.bin/ssh/channels.c
524
sc->channels = xrecallocarray(sc->channels, sc->channels_alloc,
usr.bin/ssh/channels.c
709
*permp = xrecallocarray(*permp, *npermp, *npermp + 1, sizeof(**permp));
usr.bin/ssh/misc.c
1170
args->list = xrecallocarray(args->list, args->nalloc,
usr.bin/ssh/misc.c
127
*listp = xrecallocarray(*listp, i + 1, i + 2, sizeof(**listp));
usr.bin/ssh/misc.c
2650
*iarray = xrecallocarray(*iarray, *lp, *lp + 1,
usr.bin/ssh/misc.c
2655
*array = xrecallocarray(*array, *lp, *lp + 1, sizeof(**array));
usr.bin/ssh/readconf.c
1702
*cppptr = xrecallocarray(*cppptr, *uintptr,
usr.bin/ssh/readconf.c
2258
cnames = xrecallocarray(cnames, ncnames, ncnames + 1,
usr.bin/ssh/readconf.c
937
options->send_env = xrecallocarray(options->send_env,
usr.bin/ssh/scp.c
2188
bp->buf = xrecallocarray(bp->buf, bp->cnt, size, 1);
usr.bin/ssh/servconf.c
1910
options->subsystem_name = xrecallocarray(
usr.bin/ssh/servconf.c
1914
options->subsystem_command = xrecallocarray(
usr.bin/ssh/servconf.c
1918
options->subsystem_args = xrecallocarray(
usr.bin/ssh/servconf.c
2846
dst->subsystem_name = xrecallocarray(
usr.bin/ssh/servconf.c
2849
dst->subsystem_command = xrecallocarray(
usr.bin/ssh/servconf.c
2852
dst->subsystem_args = xrecallocarray(
usr.bin/ssh/servconf.c
811
options->listen_addrs = xrecallocarray(options->listen_addrs,
usr.bin/ssh/servconf.c
874
options->queued_listen_addrs = xrecallocarray(
usr.bin/ssh/session.c
1392
tmp = xrecallocarray(sessions, sessions_nalloc,
usr.bin/ssh/session.c
1738
s->env = xrecallocarray(s->env, s->num_env,
usr.bin/ssh/sftp-usergroup.c
166
ids = xrecallocarray(ids, n, n + 1, sizeof(*ids));
usr.bin/ssh/sftp-usergroup.c
205
ids = xrecallocarray(ids, n, n + 1, sizeof(*ids));
usr.bin/ssh/ssh-add.c
740
dch->keys = xrecallocarray(dch->keys, dch->nkeys,
usr.bin/ssh/ssh-add.c
742
dch->key_is_ca = xrecallocarray(dch->key_is_ca, dch->nkeys,
usr.bin/ssh/ssh-add.c
785
*dcp = xrecallocarray(*dcp, *ndcp, *ndcp + 1, sizeof(**dcp));
usr.bin/ssh/ssh-add.c
984
certs = xrecallocarray(certs, ncerts, ncerts + 1,
usr.bin/ssh/ssh-agent.c
1103
dch->keys = xrecallocarray(dch->keys, dch->nkeys,
usr.bin/ssh/ssh-agent.c
1105
dch->key_is_ca = xrecallocarray(dch->key_is_ca, dch->nkeys,
usr.bin/ssh/ssh-agent.c
1228
*dcsp = xrecallocarray(*dcsp, *ndcsp, *ndcsp + 1,
usr.bin/ssh/ssh-agent.c
1258
*certs = xrecallocarray(*certs, *ncerts, *ncerts + 1,
usr.bin/ssh/ssh-agent.c
1739
e->session_ids = xrecallocarray(e->session_ids, e->nsession_ids,
usr.bin/ssh/ssh-agent.c
1940
sockets = xrecallocarray(sockets, old_alloc, new_alloc,
usr.bin/ssh/ssh-keygen.c
3408
opts = xrecallocarray(opts, nopts, nopts + 1,
usr.bin/ssh/ssh-pkcs11-client.c
105
helper->keyblobs = xrecallocarray(helper->keyblobs, helper->nkeyblobs,
usr.bin/ssh/ssh-pkcs11-client.c
145
helpers = xrecallocarray(helpers, nhelpers,
usr.bin/ssh/ssh-pkcs11-client.c
374
helpers = xrecallocarray(helpers, nhelpers,
usr.bin/ssh/ssh-pkcs11-client.c
484
helper->keyblobs = xrecallocarray(helper->keyblobs,
usr.bin/ssh/ssh-pkcs11.c
1482
*keysp = xrecallocarray(*keysp, *nkeys,
usr.bin/ssh/ssh-pkcs11.c
1486
*labelsp = xrecallocarray(*labelsp, *nkeys,
usr.bin/ssh/ssh-pkcs11.c
1601
*keysp = xrecallocarray(*keysp, *nkeys,
usr.bin/ssh/ssh-pkcs11.c
1605
*labelsp = xrecallocarray(*labelsp, *nkeys,
usr.bin/ssh/sshconnect.c
718
ctx->names = xrecallocarray(ctx->names,
usr.bin/ssh/sshd-auth.c
374
host_pubkeys = xrecallocarray(host_pubkeys,
usr.bin/ssh/sshd-auth.c
376
host_certificates = xrecallocarray(host_certificates,
usr.bin/ssh/sshd-session.c
564
sensitive_data.host_keys = xrecallocarray(
usr.bin/ssh/sshd-session.c
567
sensitive_data.host_pubkeys = xrecallocarray(
usr.bin/ssh/sshd-session.c
570
sensitive_data.host_certificates = xrecallocarray(
usr.bin/ssh/xmalloc.h
22
void *xrecallocarray(void *, size_t, size_t, size_t);
usr.bin/tmux/arguments.c
285
args->values = xrecallocarray(args->values,
usr.bin/tmux/cmd-parse.y
826
values = xrecallocarray(values, count, count + 1,
usr.bin/tmux/server-client.c
174
r->ranges = xrecallocarray(r->ranges, r->size, n, sizeof *r->ranges);
usr.bin/tmux/xmalloc.h
26
void *xrecallocarray(void *, size_t, size_t, size_t);