Symbol: sshbuf_get_u64
crypto/openssh/auth-options.c
877
if ((r = sshbuf_get_u64(m, &opts->valid_before)) != 0)
crypto/openssh/krl.c
1080
if ((r = sshbuf_get_u64(copy, &krl->krl_version)) != 0 ||
crypto/openssh/krl.c
1081
(r = sshbuf_get_u64(copy, &krl->generated_date)) != 0 ||
crypto/openssh/krl.c
1082
(r = sshbuf_get_u64(copy, &krl->flags)) != 0 ||
crypto/openssh/krl.c
900
if ((r = sshbuf_get_u64(subsect, &serial)) != 0)
crypto/openssh/krl.c
908
if ((r = sshbuf_get_u64(subsect, &serial_lo)) != 0 ||
crypto/openssh/krl.c
909
(r = sshbuf_get_u64(subsect, &serial_hi)) != 0)
crypto/openssh/krl.c
920
if ((r = sshbuf_get_u64(subsect, &serial_lo)) != 0 ||
crypto/openssh/monitor_wrap.c
875
(r = sshbuf_get_u64(m, timing_secretp)) != 0 ||
crypto/openssh/packet.c
2645
(r = sshbuf_get_u64(m, &state->rekey_limit)) != 0 ||
crypto/openssh/packet.c
2648
(r = sshbuf_get_u64(m, &state->p_send.blocks)) != 0 ||
crypto/openssh/packet.c
2650
(r = sshbuf_get_u64(m, &state->p_send.bytes)) != 0 ||
crypto/openssh/packet.c
2652
(r = sshbuf_get_u64(m, &state->p_read.blocks)) != 0 ||
crypto/openssh/packet.c
2654
(r = sshbuf_get_u64(m, &state->p_read.bytes)) != 0)
crypto/openssh/packet.c
2790
return sshbuf_get_u64(ssh->state->incoming_packet, valp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
115
ASSERT_INT_EQ(sshbuf_get_u64(p1, &v64), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
122
r = sshbuf_get_u64(p1, &v64);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c
53
ASSERT_INT_EQ(sshbuf_get_u64(p1, &u64), 0);
crypto/openssh/servconf.c
3181
(r = sshbuf_get_u64(buf, &tmp)) != 0)
crypto/openssh/servconf.c
3606
if ((r = sshbuf_get_u64(buf, &options->timing_secret)) != 0) {
crypto/openssh/sftp-client.c
422
if ((r = sshbuf_get_u64(msg, &st->f_bsize)) != 0 ||
crypto/openssh/sftp-client.c
423
(r = sshbuf_get_u64(msg, &st->f_frsize)) != 0 ||
crypto/openssh/sftp-client.c
424
(r = sshbuf_get_u64(msg, &st->f_blocks)) != 0 ||
crypto/openssh/sftp-client.c
425
(r = sshbuf_get_u64(msg, &st->f_bfree)) != 0 ||
crypto/openssh/sftp-client.c
426
(r = sshbuf_get_u64(msg, &st->f_bavail)) != 0 ||
crypto/openssh/sftp-client.c
427
(r = sshbuf_get_u64(msg, &st->f_files)) != 0 ||
crypto/openssh/sftp-client.c
428
(r = sshbuf_get_u64(msg, &st->f_ffree)) != 0 ||
crypto/openssh/sftp-client.c
429
(r = sshbuf_get_u64(msg, &st->f_favail)) != 0 ||
crypto/openssh/sftp-client.c
430
(r = sshbuf_get_u64(msg, &st->f_fsid)) != 0 ||
crypto/openssh/sftp-client.c
431
(r = sshbuf_get_u64(msg, &flag)) != 0 ||
crypto/openssh/sftp-client.c
432
(r = sshbuf_get_u64(msg, &st->f_namemax)) != 0)
crypto/openssh/sftp-client.c
648
if ((r = sshbuf_get_u64(msg, &limits->packet_length)) != 0 ||
crypto/openssh/sftp-client.c
649
(r = sshbuf_get_u64(msg, &limits->read_length)) != 0 ||
crypto/openssh/sftp-client.c
650
(r = sshbuf_get_u64(msg, &limits->write_length)) != 0 ||
crypto/openssh/sftp-client.c
651
(r = sshbuf_get_u64(msg, &limits->open_handles)) != 0)
crypto/openssh/sftp-common.c
112
if ((r = sshbuf_get_u64(b, &a->size)) != 0)
crypto/openssh/sftp-server.c
1613
(r = sshbuf_get_u64(iqueue, &read_off)) != 0 ||
crypto/openssh/sftp-server.c
1614
(r = sshbuf_get_u64(iqueue, &read_len)) != 0 ||
crypto/openssh/sftp-server.c
1616
(r = sshbuf_get_u64(iqueue, &write_off)) != 0)
crypto/openssh/sftp-server.c
800
(r = sshbuf_get_u64(iqueue, &off)) != 0 ||
crypto/openssh/sftp-server.c
854
(r = sshbuf_get_u64(iqueue, &off)) != 0 ||
crypto/openssh/sshbuf.h
177
int sshbuf_get_u64(struct sshbuf *buf, uint64_t *valp);
crypto/openssh/sshd-session.c
665
(r = sshbuf_get_u64(m, timing_secretp)) != 0 ||
crypto/openssh/sshkey.c
1881
if ((ret = sshbuf_get_u64(b, &key->cert->serial)) != 0 ||
crypto/openssh/sshkey.c
1885
(ret = sshbuf_get_u64(b, &key->cert->valid_after)) != 0 ||
crypto/openssh/sshkey.c
1886
(ret = sshbuf_get_u64(b, &key->cert->valid_before)) != 0 ||