Searched refs:update_checksum (Results 1 – 10 of 10) sorted by relevance
/third_party/ffmpeg/libavformat/ |
D | aviobuf.c | 113 s->update_checksum = NULL; in ffio_init_context() 199 if (s->update_checksum) { in flush_buffer() 200 s->checksum = s->update_checksum(s->checksum, s->checksum_ptr, in flush_buffer() 234 if (s->direct && !s->update_checksum) { in avio_write() 557 if (s->update_checksum && dst == s->buffer) { in fill_buffer() 559 s->checksum = s->update_checksum(s->checksum, s->checksum_ptr, in fill_buffer() 614 s->checksum = s->update_checksum(s->checksum, s->checksum_ptr, in ffio_get_checksum() 616 s->update_checksum = NULL; in ffio_get_checksum() 621 … unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len), in ffio_init_checksum() 624 s->update_checksum = update_checksum; in ffio_init_checksum() [all …]
|
D | avio_internal.h | 167 … unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len),
|
D | avio.h | 248 unsigned long (*update_checksum)(unsigned long checksum, const uint8_t *buf, unsigned int size); member
|
/third_party/mbedtls/library/ |
D | ssl_client.c | 955 ret = ssl->handshake->update_checksum(ssl, buf, msg_len - binders_len); in mbedtls_ssl_write_client_hello() 965 ret = ssl->handshake->update_checksum(ssl, buf + msg_len - binders_len, in mbedtls_ssl_write_client_hello()
|
D | ssl_tls13_server.c | 535 ret = ssl->handshake->update_checksum(ssl, pre_shared_key_ext, in ssl_tls13_parse_pre_shared_key_ext() 659 ret = ssl->handshake->update_checksum(ssl, in ssl_tls13_parse_pre_shared_key_ext() 1655 ret = handshake->update_checksum(ssl, buf, in ssl_tls13_parse_client_hello() 1676 ret = handshake->update_checksum(ssl, buf, p - buf); in ssl_tls13_parse_client_hello()
|
D | ssl_misc.h | 713 int (*update_checksum)(mbedtls_ssl_context *, const unsigned char *, size_t); member 1433 int update_checksum,
|
D | ssl_msg.c | 2558 int update_checksum, in mbedtls_ssl_write_handshake_msg_ext() argument 2658 if (hs_type != MBEDTLS_SSL_HS_HELLO_REQUEST && update_checksum != 0) { in mbedtls_ssl_write_handshake_msg_ext() 2659 ret = ssl->handshake->update_checksum(ssl, ssl->out_msg, in mbedtls_ssl_write_handshake_msg_ext() 3098 ret = ssl->handshake->update_checksum(ssl, ssl->in_msg, ssl->in_hslen); in mbedtls_ssl_update_handshake_status()
|
D | ssl_tls13_generic.c | 1422 ret = ssl->handshake->update_checksum(ssl, hash_transcript, hash_len); in mbedtls_ssl_reset_transcript_for_hrr()
|
D | ssl_tls.c | 789 ssl->handshake->update_checksum = ssl_update_checksum_sha384; in mbedtls_ssl_optimize_checksum() 794 ssl->handshake->update_checksum = ssl_update_checksum_sha256; in mbedtls_ssl_optimize_checksum() 815 return ssl->handshake->update_checksum(ssl, hs_hdr, sizeof(hs_hdr)); in mbedtls_ssl_add_hs_hdr_to_checksum() 828 return ssl->handshake->update_checksum(ssl, msg, msg_len); in mbedtls_ssl_add_hs_msg_to_checksum() 984 handshake->update_checksum = ssl_update_checksum_start; in ssl_handshake_params_init()
|
D | ssl_tls12_server.c | 1029 ret = ssl->handshake->update_checksum(ssl, buf, msg_len); in ssl_parse_client_hello()
|