Searched refs:nb_want (Results 1 - 2 of 2) sorted by relevance
/third_party/mbedtls/library/ |
H A D | ssl_msg.c | 2134 * If we return 0, is it guaranteed that (at least) nb_want bytes are 2138 * With stream transport (TLS) on success ssl->in_left == nb_want, but 2139 * with datagram transport (DTLS) on success ssl->in_left >= nb_want, 2145 int mbedtls_ssl_fetch_input(mbedtls_ssl_context *ssl, size_t nb_want) in mbedtls_ssl_fetch_input() argument 2162 if (nb_want > in_buf_len - (size_t) (ssl->in_hdr - ssl->in_buf)) { in mbedtls_ssl_fetch_input() 2202 ", nb_want: %" MBEDTLS_PRINTF_SIZET, in mbedtls_ssl_fetch_input() 2203 ssl->in_left, nb_want)); in mbedtls_ssl_fetch_input() 2208 if (nb_want <= ssl->in_left) { in mbedtls_ssl_fetch_input() 2296 ", nb_want: %" MBEDTLS_PRINTF_SIZET, in mbedtls_ssl_fetch_input() 2297 ssl->in_left, nb_want)); in mbedtls_ssl_fetch_input() [all...] |
H A D | ssl_misc.h | 1439 int mbedtls_ssl_fetch_input(mbedtls_ssl_context *ssl, size_t nb_want);
|
Completed in 9 milliseconds