Searched refs:sshbuf_get_u64 (Results 1 – 9 of 9) sorted by relevance
/external/openssh/ |
D | sftp-client.c | 354 if ((r = sshbuf_get_u64(msg, &st->f_bsize)) != 0 || in get_decode_statvfs() 355 (r = sshbuf_get_u64(msg, &st->f_frsize)) != 0 || in get_decode_statvfs() 356 (r = sshbuf_get_u64(msg, &st->f_blocks)) != 0 || in get_decode_statvfs() 357 (r = sshbuf_get_u64(msg, &st->f_bfree)) != 0 || in get_decode_statvfs() 358 (r = sshbuf_get_u64(msg, &st->f_bavail)) != 0 || in get_decode_statvfs() 359 (r = sshbuf_get_u64(msg, &st->f_files)) != 0 || in get_decode_statvfs() 360 (r = sshbuf_get_u64(msg, &st->f_ffree)) != 0 || in get_decode_statvfs() 361 (r = sshbuf_get_u64(msg, &st->f_favail)) != 0 || in get_decode_statvfs() 362 (r = sshbuf_get_u64(msg, &st->f_fsid)) != 0 || in get_decode_statvfs() 363 (r = sshbuf_get_u64(msg, &flag)) != 0 || in get_decode_statvfs() [all …]
|
D | krl.c | 842 if ((r = sshbuf_get_u64(subsect, &serial)) != 0) in parse_revoked_certs() 850 if ((r = sshbuf_get_u64(subsect, &serial_lo)) != 0 || in parse_revoked_certs() 851 (r = sshbuf_get_u64(subsect, &serial_hi)) != 0) in parse_revoked_certs() 862 if ((r = sshbuf_get_u64(subsect, &serial_lo)) != 0 || in parse_revoked_certs() 963 if ((r = sshbuf_get_u64(copy, &krl->krl_version)) != 0 || in ssh_krl_from_blob() 964 (r = sshbuf_get_u64(copy, &krl->generated_date)) != 0 || in ssh_krl_from_blob() 965 (r = sshbuf_get_u64(copy, &krl->flags)) != 0 || in ssh_krl_from_blob()
|
D | bufaux.c | 79 if ((ret = sshbuf_get_u64(buffer, v)) != 0) { in buffer_get_int64_ret()
|
D | sftp-common.c | 113 if ((r = sshbuf_get_u64(b, &a->size)) != 0) in decode_attrib()
|
D | packet.c | 2657 (r = sshbuf_get_u64(m, &state->p_send.blocks)) != 0 || in ssh_packet_set_state() 2659 (r = sshbuf_get_u64(m, &state->p_send.bytes)) != 0 || in ssh_packet_set_state() 2661 (r = sshbuf_get_u64(m, &state->p_read.blocks)) != 0 || in ssh_packet_set_state() 2663 (r = sshbuf_get_u64(m, &state->p_read.bytes)) != 0) in ssh_packet_set_state() 2697 if ((r = sshbuf_get_u64(m, &sent_bytes)) != 0 || in ssh_packet_set_state() 2698 (r = sshbuf_get_u64(m, &recv_bytes)) != 0) in ssh_packet_set_state() 2807 return sshbuf_get_u64(ssh->state->incoming_packet, valp); in sshpkt_get_u64()
|
D | sshbuf.h | 171 int sshbuf_get_u64(struct sshbuf *buf, u_int64_t *valp);
|
D | sshbuf-getput-basic.c | 43 sshbuf_get_u64(struct sshbuf *buf, u_int64_t *valp) in sshbuf_get_u64() function
|
D | sftp-server.c | 745 (r = sshbuf_get_u64(iqueue, &off)) != 0 || in process_read() 786 (r = sshbuf_get_u64(iqueue, &off)) != 0 || in process_write()
|
D | sshkey.c | 1847 if ((ret = sshbuf_get_u64(b, &key->cert->serial)) != 0 || in cert_parse() 1851 (ret = sshbuf_get_u64(b, &key->cert->valid_after)) != 0 || in cert_parse() 1852 (ret = sshbuf_get_u64(b, &key->cert->valid_before)) != 0 || in cert_parse()
|