Symbol: BIO_write_ex
crypto/openssl/crypto/bio/bf_prefix.c
101
return BIO_write_ex(BIO_next(b), out, outl, numwritten);
crypto/openssl/crypto/bio/bf_prefix.c
118
&& !BIO_write_ex(BIO_next(b), ctx->prefix, strlen(ctx->prefix),
crypto/openssl/crypto/bio/bf_prefix.c
135
if (!BIO_write_ex(BIO_next(b), out, i, &num))
crypto/openssl/crypto/bio/ossl_core_bio.c
101
return BIO_write_ex(cb->bio, data, dlen, written);
crypto/openssl/crypto/http/http_client.c
634
if (!BIO_write_ex(rctx->wbio, rctx->pos, rctx->len_to_send, &sz)) {
crypto/openssl/include/openssl/bio.h
750
int BIO_write_ex(BIO *b, const void *data, size_t dlen, size_t *written);
crypto/openssl/include/openssl/core_dispatch.h
166
OSSL_CORE_MAKE_FUNC(int, BIO_write_ex, (OSSL_CORE_BIO *bio, const void *data, size_t data_len, size_t *written))
crypto/openssl/ssl/quic/json_enc.c
89
if (!BIO_write_ex(wbuf->bio,
crypto/openssl/ssl/record/methods/dtls_meth.c
600
ret = BIO_write_ex(rl->next, rbuf->buf + rbuf->offset, left, &written);
crypto/openssl/ssl/record/methods/dtls_meth.c
608
ret &= BIO_write_ex(rl->next, rdata->packet, rdata->packet_length,
crypto/openssl/ssl/record/methods/tls_common.c
1497
ret = BIO_write_ex(rl->next, rbuf->buf + rbuf->offset, left, &written);
crypto/openssl/test/bio_core_test.c
28
return BIO_write_ex(bio->bio, data, data_len, written);
crypto/openssl/test/bio_prefix_text.c
86
if (!BIO_write_ex(chain[amount - 1], buf, bytes_in, &bytes))
crypto/openssl/test/bio_tfo_test.c
156
if (!TEST_true(BIO_write_ex(cbio, SOCKET_DATA, SOCKET_DATA_LEN, &bytes))) {
crypto/openssl/test/evp_extra_test.c
1923
if (!BIO_write_ex(mdbio, kMsg, sizeof(kMsg), &written))
crypto/openssl/test/evp_extra_test.c
1980
if (!TEST_true(BIO_write_ex(mdbio, kMsg, sizeof(kMsg), &written)))
crypto/openssl/test/quicapitest.c
1015
if (!TEST_true(BIO_write_ex(thisbio, msg, msglen, &written)))
crypto/openssl/test/quicapitest.c
936
retc = BIO_write_ex(cbio, msg, msglen, &written);
crypto/openssl/test/recordlentest.c
41
if (!BIO_write_ex(b, header, SSL3_RT_HEADER_LENGTH, &written)
crypto/openssl/test/recordlentest.c
53
if (!BIO_write_ex(b, buf, outlen, &written)
crypto/openssl/test/sslapitest.c
12018
if (!TEST_true(BIO_write_ex(SSL_get_rbio(serverssl), dummyheader,
crypto/openssl/test/sslapitest.c
3653
if (!TEST_true(BIO_write_ex(rbio, data, eoedlen, &rawwritten))
crypto/openssl/test/sslapitest.c
3674
if (!TEST_true(BIO_write_ex(rbio, data + eoedlen, rawread - eoedlen,
crypto/openssl/test/sslapitest.c
4076
if (!TEST_true(BIO_write_ex(wbio, bad_early_data,
crypto/openssl/test/sslbuffertest.c
296
if (!TEST_true(BIO_write_ex(tmp, buf, partial_len, &written)))