Symbol: sshbuf_reserve
crypto/openssh/kexc25519.c
100
if ((r = sshbuf_reserve(buf, CURVE25519_SIZE, &cp)) != 0)
crypto/openssh/kexc25519.c
140
if ((r = sshbuf_reserve(server_blob, CURVE25519_SIZE, &server_pub)) != 0)
crypto/openssh/kexsntrup761x25519.c
109
if ((r = sshbuf_reserve(buf, crypto_kem_sntrup761_BYTES,
crypto/openssh/kexsntrup761x25519.c
118
if ((r = sshbuf_reserve(server_blob, need, &ciphertext)) != 0)
crypto/openssh/kexsntrup761x25519.c
189
if ((r = sshbuf_reserve(buf, crypto_kem_sntrup761_BYTES,
crypto/openssh/kexsntrup761x25519.c
53
if ((r = sshbuf_reserve(buf, need, &cp)) != 0)
crypto/openssh/monitor.c
433
if ((r = sshbuf_reserve(logmsg, 4, &p)) != 0)
crypto/openssh/monitor.c
452
if ((r = sshbuf_reserve(logmsg, len, &p)) != 0)
crypto/openssh/monitor_wrap.c
199
if ((r = sshbuf_reserve(m, msg_len, &p)) != 0)
crypto/openssh/msg.c
86
if ((r = sshbuf_reserve(m, msg_len, &p)) != 0) {
crypto/openssh/mux.c
1469
if ((r = sshbuf_reserve(b, need, &p)) != 0)
crypto/openssh/packet.c
1246
if ((r = sshbuf_reserve(state->outgoing_packet, padlen, &cp)) != 0)
crypto/openssh/packet.c
1277
if ((r = sshbuf_reserve(state->output,
crypto/openssh/packet.c
1614
if ((r = sshbuf_reserve(state->incoming_packet, block_size,
crypto/openssh/packet.c
1682
if ((r = sshbuf_reserve(state->incoming_packet, aadlen + need,
crypto/openssh/sftp-client.c
195
if ((r = sshbuf_reserve(m, 4, &p)) != 0)
crypto/openssh/sftp-client.c
214
if ((r = sshbuf_reserve(m, msg_len, &p)) != 0)
crypto/openssh/sshbuf-getput-basic.c
319
(r = sshbuf_reserve(v, len, &p)) != 0 ||
crypto/openssh/sshbuf-getput-basic.c
331
if ((r = sshbuf_reserve(buf, len, &p)) < 0)
crypto/openssh/sshbuf-getput-basic.c
376
if ((r = sshbuf_reserve(buf, (size_t)len + 1, &p)) < 0)
crypto/openssh/sshbuf-getput-basic.c
397
if ((r = sshbuf_reserve(buf, 8, &p)) < 0)
crypto/openssh/sshbuf-getput-basic.c
409
if ((r = sshbuf_reserve(buf, 4, &p)) < 0)
crypto/openssh/sshbuf-getput-basic.c
421
if ((r = sshbuf_reserve(buf, 2, &p)) < 0)
crypto/openssh/sshbuf-getput-basic.c
433
if ((r = sshbuf_reserve(buf, 1, &p)) < 0)
crypto/openssh/sshbuf-getput-basic.c
523
if ((r = sshbuf_reserve(buf, len + 4, &d)) < 0)
crypto/openssh/sshbuf-getput-basic.c
589
if ((r = sshbuf_reserve(buf, len + 4 + prepend, &d)) < 0)
crypto/openssh/sshbuf-misc.c
284
if ((r = sshbuf_reserve(buf, maxlen, &d)) != 0)
crypto/openssh/sshbuf.h
130
int sshbuf_reserve(struct sshbuf *buf, size_t len, u_char **dpp);
crypto/openssh/sshkey-xmss.c
1050
if ((r = sshbuf_reserve(decrypted, aadlen + encrypted_len, &dp)) != 0 ||
crypto/openssh/sshkey-xmss.c
956
if ((r = sshbuf_reserve(encrypted,
crypto/openssh/sshkey.c
1723
if ((r = sshbuf_reserve(prvbuf, k->shielded_len, &cp)) != 0)
crypto/openssh/sshkey.c
2842
if ((r = sshbuf_reserve(encoded,
crypto/openssh/sshkey.c
3044
if ((r = sshbuf_reserve(decrypted, encrypted_len, &dp)) != 0 ||