Home
last modified time | relevance | path

Searched refs:xreallocarray (Results 1 – 20 of 20) sorted by relevance

/freebsd-10-stable/crypto/openssh/
Dxmalloc.h22 void *xreallocarray(void *, size_t, size_t);
Duidswap.c89 saved_egroups = xreallocarray(saved_egroups, in temporarily_use_uid()
107 user_groups = xreallocarray(user_groups, in temporarily_use_uid()
Duuencode.c85 buf = xreallocarray(NULL, 2, len); in dump_base64()
Dxmalloc.c69 xreallocarray(void *ptr, size_t nmemb, size_t size) in xreallocarray() function
Dauth-pam.c738 **prompts = xreallocarray(**prompts, 1, len); in sshpam_query()
748 **prompts = xreallocarray(**prompts, 1, len); in sshpam_query()
Dauth2-pubkey.c287 argv = xreallocarray(argv, (argc + 2), sizeof(*argv)); in split_argv()
1003 av = xreallocarray(av, ac + 2, sizeof(*av)); in user_key_command_allowed2()
Dchannels.c315 channels = xreallocarray(channels, channels_alloc + 10, in channel_new()
2214 *readsetp = xreallocarray(*readsetp, nfdset, sizeof(fd_mask));
2215 *writesetp = xreallocarray(*writesetp, nfdset, sizeof(fd_mask));
3266 permitted_opens = xreallocarray(permitted_opens,
3498 permitted_opens = xreallocarray(permitted_opens,
3548 permitted_adm_opens = xreallocarray(permitted_adm_opens,
Dsession.c1028 env = (*envp) = xreallocarray(env, envsize, sizeof(char *)); in child_set_env()
1955 tmp = xreallocarray(sessions, sessions_nalloc + 1, in session_new()
2288 s->env = xreallocarray(s->env, s->num_env + 1, in session_env_req()
Dservconf.c684 options->queued_listen_addrs = xreallocarray( in queue_listen_addr()
687 options->queued_listen_ports = xreallocarray( in queue_listen_addr()
1540 p = xreallocarray(p, 1, len); in process_server_config_line()
Dssh-pkcs11.c548 *keysp = xreallocarray(*keysp, *nkeys + 1, in pkcs11_fetch_keys_filter()
Dsftp-server.c309 handles = xreallocarray(handles, num_handles, sizeof(Handle)); in handle_new()
1062 stats = xreallocarray(stats, nstats, sizeof(Stat)); in process_readdir()
Dmisc.c537 args->list = xreallocarray(args->list, nalloc, sizeof(char *)); in addargs()
Dssh_namespace.h936 #define xreallocarray Fssh_xreallocarray macro
Dscp.c1358 bp->buf = xreallocarray(bp->buf, 1, size);
Dreadconf.c345 options->local_forwards = xreallocarray(options->local_forwards, in add_local_forward()
374 options->remote_forwards = xreallocarray(options->remote_forwards, in add_remote_forward()
Dssh-agent.c991 sockets = xreallocarray(sockets, new_alloc, sizeof(sockets[0])); in new_socket()
Dsftp-client.c625 *dir = xreallocarray(*dir, ents + 2, sizeof(**dir)); in do_lsreaddir()
Dmux.c352 cctx->env = xreallocarray(cctx->env, env_len + 2, in process_mux_new_session()
Dssh-keygen.c1615 plist = xreallocarray(plist, n + 1, sizeof(*plist)); in do_ca_sign()
DChangeLog5773 xrealloc -> xreallocarray in portable code too.
5869 2*len -> use xreallocarray() ok djm
5877 rename xrealloc() to xreallocarray() since it follows