Symbol: sshbuf_get_u64
crypto/openssh/auth-options.c
879
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
882
(r = sshbuf_get_u64(m, timing_secretp)) != 0 ||
crypto/openssh/packet.c
2557
(r = sshbuf_get_u64(m, &state->rekey_limit)) != 0 ||
crypto/openssh/packet.c
2560
(r = sshbuf_get_u64(m, &state->p_send.blocks)) != 0 ||
crypto/openssh/packet.c
2562
(r = sshbuf_get_u64(m, &state->p_send.bytes)) != 0 ||
crypto/openssh/packet.c
2564
(r = sshbuf_get_u64(m, &state->p_read.blocks)) != 0 ||
crypto/openssh/packet.c
2566
(r = sshbuf_get_u64(m, &state->p_read.bytes)) != 0)
crypto/openssh/packet.c
2692
return sshbuf_get_u64(ssh->state->incoming_packet, valp);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
117
ASSERT_INT_EQ(sshbuf_get_u64(p1, &v64), 0);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_basic.c
124
r = sshbuf_get_u64(p1, &v64);
crypto/openssh/regress/unittests/sshbuf/test_sshbuf_getput_fuzz.c
55
sshbuf_get_u64(p1, &u64);
crypto/openssh/sftp-client.c
434
if ((r = sshbuf_get_u64(msg, &st->f_bsize)) != 0 ||
crypto/openssh/sftp-client.c
435
(r = sshbuf_get_u64(msg, &st->f_frsize)) != 0 ||
crypto/openssh/sftp-client.c
436
(r = sshbuf_get_u64(msg, &st->f_blocks)) != 0 ||
crypto/openssh/sftp-client.c
437
(r = sshbuf_get_u64(msg, &st->f_bfree)) != 0 ||
crypto/openssh/sftp-client.c
438
(r = sshbuf_get_u64(msg, &st->f_bavail)) != 0 ||
crypto/openssh/sftp-client.c
439
(r = sshbuf_get_u64(msg, &st->f_files)) != 0 ||
crypto/openssh/sftp-client.c
440
(r = sshbuf_get_u64(msg, &st->f_ffree)) != 0 ||
crypto/openssh/sftp-client.c
441
(r = sshbuf_get_u64(msg, &st->f_favail)) != 0 ||
crypto/openssh/sftp-client.c
442
(r = sshbuf_get_u64(msg, &st->f_fsid)) != 0 ||
crypto/openssh/sftp-client.c
443
(r = sshbuf_get_u64(msg, &flag)) != 0 ||
crypto/openssh/sftp-client.c
444
(r = sshbuf_get_u64(msg, &st->f_namemax)) != 0)
crypto/openssh/sftp-client.c
663
if ((r = sshbuf_get_u64(msg, &limits->packet_length)) != 0 ||
crypto/openssh/sftp-client.c
664
(r = sshbuf_get_u64(msg, &limits->read_length)) != 0 ||
crypto/openssh/sftp-client.c
665
(r = sshbuf_get_u64(msg, &limits->write_length)) != 0 ||
crypto/openssh/sftp-client.c
666
(r = sshbuf_get_u64(msg, &limits->open_handles)) != 0)
crypto/openssh/sftp-common.c
114
if ((r = sshbuf_get_u64(b, &a->size)) != 0)
crypto/openssh/sftp-server.c
1619
(r = sshbuf_get_u64(iqueue, &read_off)) != 0 ||
crypto/openssh/sftp-server.c
1620
(r = sshbuf_get_u64(iqueue, &read_len)) != 0 ||
crypto/openssh/sftp-server.c
1622
(r = sshbuf_get_u64(iqueue, &write_off)) != 0)
crypto/openssh/sftp-server.c
808
(r = sshbuf_get_u64(iqueue, &off)) != 0 ||
crypto/openssh/sftp-server.c
862
(r = sshbuf_get_u64(iqueue, &off)) != 0 ||
crypto/openssh/sshbuf.h
156
int sshbuf_get_u64(struct sshbuf *buf, u_int64_t *valp);
crypto/openssh/sshd-session.c
716
(r = sshbuf_get_u64(m, timing_secretp)) != 0 ||
crypto/openssh/sshkey.c
1880
if ((ret = sshbuf_get_u64(b, &key->cert->serial)) != 0 ||
crypto/openssh/sshkey.c
1884
(ret = sshbuf_get_u64(b, &key->cert->valid_after)) != 0 ||
crypto/openssh/sshkey.c
1885
(ret = sshbuf_get_u64(b, &key->cert->valid_before)) != 0 ||