Searched refs:sshbuf_check_reserve (Results 1 – 5 of 5) sorted by relevance
/external/openssh/ |
D | sshbuf.c | 305 sshbuf_check_reserve(const struct sshbuf *buf, size_t len) in sshbuf_check_reserve() function 331 if ((r = sshbuf_check_reserve(buf, len)) != 0) in sshbuf_reserve() 358 if ((r = sshbuf_check_reserve(buf, len)) < 0) { in sshbuf_reserve()
|
D | buffer.c | 52 int ret = sshbuf_check_reserve(buffer, len); in buffer_check_alloc()
|
D | ssh_api.c | 300 return (0 == sshbuf_check_reserve(ssh_packet_get_output(ssh), len)); in ssh_output_space() 306 return (0 == sshbuf_check_reserve(ssh_packet_get_input(ssh), len)); in ssh_input_space()
|
D | sshbuf.h | 139 int sshbuf_check_reserve(const struct sshbuf *buf, size_t len);
|
D | sftp-server.c | 1655 if ((r = sshbuf_check_reserve(iqueue, sizeof(buf))) == 0 && in sftp_server_main() 1656 (r = sshbuf_check_reserve(oqueue, in sftp_server_main() 1705 r = sshbuf_check_reserve(oqueue, SFTP_MAX_MSG_LENGTH); in sftp_server_main()
|