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/kexmlkem768x25519.c
64
if ((r = sshbuf_reserve(buf, need, &cp)) != 0)
crypto/openssh/kexsntrup761x25519.c
113
if ((r = sshbuf_reserve(buf, crypto_kem_sntrup761_BYTES,
crypto/openssh/kexsntrup761x25519.c
122
if ((r = sshbuf_reserve(server_blob, need, &ciphertext)) != 0)
crypto/openssh/kexsntrup761x25519.c
193
if ((r = sshbuf_reserve(buf, crypto_kem_sntrup761_BYTES,
crypto/openssh/kexsntrup761x25519.c
57
if ((r = sshbuf_reserve(buf, need, &cp)) != 0)
crypto/openssh/monitor.c
451
if ((r = sshbuf_reserve(logmsg, 4, &p)) != 0)
crypto/openssh/monitor.c
470
if ((r = sshbuf_reserve(logmsg, len, &p)) != 0)
crypto/openssh/monitor_wrap.c
189
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
1468
if ((r = sshbuf_reserve(b, need, &p)) != 0)
crypto/openssh/packet.c
1245
if ((r = sshbuf_reserve(state->outgoing_packet, padlen, &cp)) != 0)
crypto/openssh/packet.c
1276
if ((r = sshbuf_reserve(state->output,
crypto/openssh/packet.c
1613
if ((r = sshbuf_reserve(state->incoming_packet, block_size,
crypto/openssh/packet.c
1681
if ((r = sshbuf_reserve(state->incoming_packet, aadlen + need,
crypto/openssh/regress/unittests/sshbuf/test_sshbuf.c
143
r = sshbuf_reserve(p1, 4, &dp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf.c
172
r = sshbuf_reserve(p1, 1223, &dp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf.c
178
r = sshbuf_reserve(p1, 1, &dp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf.c
187
r = sshbuf_reserve(p1, 224, &dp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf.c
192
r = sshbuf_reserve(p1, 223, &dp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf.c
214
r = sshbuf_reserve(p1, 1, &dp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf.c
232
r = sshbuf_reserve(p1, 1223, &dp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf.c
88
r = sshbuf_reserve(p1, 1, &dp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf.c
92
r = sshbuf_reserve(p1, 3, &dp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_fixed.c
42
ASSERT_INT_EQ(sshbuf_reserve(p1, 1, NULL), SSH_ERR_BUFFER_READ_ONLY);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_fuzz.c
56
ret = sshbuf_reserve(p1, r, &dp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
550
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
558
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
566
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
584
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
592
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
600
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
618
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
626
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
634
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
652
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
660
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
668
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
682
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
690
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
698
ASSERT_INT_EQ(sshbuf_reserve(p1, 10, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_crypto.c
166
ASSERT_INT_EQ(sshbuf_reserve(p1, 65536, NULL), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_misc.c
102
ASSERT_INT_EQ(sshbuf_reserve(p1, 8192, NULL), 0);
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
131
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
1828
if ((r = sshbuf_reserve(prvbuf, k->shielded_len, &cp)) != 0)
crypto/openssh/sshkey.c
2934
if ((r = sshbuf_reserve(encoded,
crypto/openssh/sshkey.c
3136
if ((r = sshbuf_reserve(decrypted, encrypted_len, &dp)) != 0 ||