Symbol: BIO_ctrl
crypto/openssl/apps/s_client.c
2319
BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
crypto/openssl/apps/s_client.c
2323
BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
crypto/openssl/apps/s_client.c
2341
BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
crypto/openssl/apps/s_server.c
2609
BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_RECV_TIMEOUT, 0, &timeout);
crypto/openssl/apps/s_server.c
2613
BIO_ctrl(sbio, BIO_CTRL_DGRAM_SET_SEND_TIMEOUT, 0, &timeout);
crypto/openssl/apps/s_server.c
2633
BIO_ctrl(sbio, BIO_CTRL_DGRAM_MTU_DISCOVER, 0, NULL);
crypto/openssl/apps/s_server.c
382
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/asn1/bio_asn1.c
385
return BIO_ctrl(next, cmd, arg1, arg2);
crypto/openssl/crypto/asn1/bio_asn1.c
394
return BIO_ctrl(next, cmd, arg1, arg2);
crypto/openssl/crypto/asn1/bio_asn1.c
406
return BIO_ctrl(b, cmd, 0, &extmp);
crypto/openssl/crypto/asn1/bio_asn1.c
415
ret = BIO_ctrl(b, cmd, 0, &extmp);
crypto/openssl/crypto/asn1/bio_ndef.c
83
|| BIO_ctrl(asn_bio, BIO_C_SET_EX_ARG, 0, ndef_aux) <= 0)
crypto/openssl/crypto/bio/bf_buff.c
254
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_buff.c
259
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_buff.c
277
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_buff.c
285
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_buff.c
354
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_buff.c
362
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_buff.c
383
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_buff.c
405
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_lbuf.c
236
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_lbuf.c
246
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_lbuf.c
273
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_lbuf.c
281
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_lbuf.c
301
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_lbuf.c
312
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_nbio.c
157
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_nbio.c
164
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_null.c
82
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_null.c
89
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_prefix.c
188
ret = BIO_ctrl(BIO_next(b), cmd, num, ptr);
crypto/openssl/crypto/bio/bf_readbuff.c
175
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bf_readbuff.c
197
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bio_lib.c
486
return BIO_ctrl(b, BIO_CTRL_GET_RPOLL_DESCRIPTOR, 0, desc);
crypto/openssl/crypto/bio/bio_lib.c
491
return BIO_ctrl(b, BIO_CTRL_GET_WPOLL_DESCRIPTOR, 0, desc);
crypto/openssl/crypto/bio/bio_lib.c
643
return BIO_ctrl(b, cmd, larg, (char *)&i);
crypto/openssl/crypto/bio/bio_lib.c
650
if (BIO_ctrl(b, cmd, larg, (char *)&p) <= 0)
crypto/openssl/crypto/bio/bio_lib.c
717
long ret = BIO_ctrl(bio, BIO_CTRL_PENDING, 0, NULL);
crypto/openssl/crypto/bio/bio_lib.c
730
long ret = BIO_ctrl(bio, BIO_CTRL_WPENDING, 0, NULL);
crypto/openssl/crypto/bio/bio_lib.c
755
BIO_ctrl(b, BIO_CTRL_PUSH, 0, lb);
crypto/openssl/crypto/bio/bio_lib.c
768
BIO_ctrl(b, BIO_CTRL_POP, 0, b);
crypto/openssl/crypto/bio/bss_acpt.c
550
ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
crypto/openssl/crypto/bio/bss_bio.c
720
return BIO_ctrl(bio, BIO_C_GET_WRITE_GUARANTEE, 0, NULL);
crypto/openssl/crypto/bio/bss_bio.c
725
return BIO_ctrl(bio, BIO_C_GET_READ_REQUEST, 0, NULL);
crypto/openssl/crypto/bio/bss_bio.c
730
return (BIO_ctrl(bio, BIO_C_RESET_READ_REQUEST, 0, NULL) != 0);
crypto/openssl/crypto/bio/bss_bio.c
747
ret = BIO_ctrl(bio, BIO_C_NREAD0, 0, buf);
crypto/openssl/crypto/bio/bss_bio.c
763
ret = (int)BIO_ctrl(bio, BIO_C_NREAD, num, buf);
crypto/openssl/crypto/bio/bss_bio.c
778
ret = BIO_ctrl(bio, BIO_C_NWRITE0, 0, buf);
crypto/openssl/crypto/bio/bss_bio.c
794
ret = BIO_ctrl(bio, BIO_C_NWRITE, num, buf);
crypto/openssl/crypto/bio/bss_dgram.c
2568
return (int)BIO_ctrl(b, BIO_CTRL_DGRAM_SCTP_WAIT_FOR_DRY, 0, NULL);
crypto/openssl/crypto/bio/bss_dgram.c
2726
return (int)BIO_ctrl(b, BIO_CTRL_DGRAM_SCTP_MSG_WAITING, 0, NULL);
crypto/openssl/crypto/bio/bss_dgram.c
440
BIO_ctrl(b, BIO_CTRL_DGRAM_SET_PEER, 0, &peer);
crypto/openssl/crypto/bio/ossl_core_bio.c
116
return BIO_ctrl(cb->bio, cmd, larg, parg);
crypto/openssl/crypto/comp/c_brotli.c
765
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_brotli.c
773
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_brotli.c
780
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_brotli.c
784
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zlib.c
678
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zlib.c
695
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zlib.c
701
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zlib.c
705
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zstd.c
813
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zstd.c
821
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zstd.c
828
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/comp/c_zstd.c
832
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
449
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
455
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
464
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
470
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
496
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
502
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_b64.c
512
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
319
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
325
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
330
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
335
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
367
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
375
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_enc.c
394
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_md.c
150
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_md.c
172
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_md.c
190
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_ok.c
340
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_ok.c
346
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_ok.c
352
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_ok.c
373
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_ok.c
378
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/evp/bio_ok.c
398
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/crypto/http/http_client.c
331
req_len = BIO_ctrl(req, BIO_CTRL_INFO, 0, NULL);
crypto/openssl/crypto/trace.c
499
(void)BIO_ctrl(channel, OSSL_TRACE_CTRL_BEGIN,
crypto/openssl/crypto/trace.c
528
(void)BIO_ctrl(channel, OSSL_TRACE_CTRL_END,
crypto/openssl/include/internal/bio.h
75
BIO_ctrl(b, BIO_CTRL_SET_KTLS, is_tx, keyblob)
crypto/openssl/include/internal/bio.h
77
BIO_ctrl(b, BIO_CTRL_SET_KTLS_TX_SEND_CTRL_MSG, record_type, NULL)
crypto/openssl/include/internal/bio.h
79
BIO_ctrl(b, BIO_CTRL_CLEAR_KTLS_TX_CTRL_MSG, 0, NULL)
crypto/openssl/include/internal/bio.h
81
BIO_ctrl(b, BIO_CTRL_SET_KTLS_TX_ZEROCOPY_SENDFILE, 0, NULL)
crypto/openssl/include/openssl/bio.h
208
(BIO_ctrl(b, BIO_CTRL_GET_KTLS_SEND, 0, NULL) > 0)
crypto/openssl/include/openssl/bio.h
210
(BIO_ctrl(b, BIO_CTRL_GET_KTLS_RECV, 0, NULL) > 0)
crypto/openssl/include/openssl/bio.h
505
#define BIO_set_nbio(b, n) BIO_ctrl(b, BIO_C_SET_NBIO, (n), NULL)
crypto/openssl/include/openssl/bio.h
506
#define BIO_set_tfo(b, n) BIO_ctrl(b, BIO_C_SET_TFO, (n), NULL)
crypto/openssl/include/openssl/bio.h
516
#define BIO_set_conn_hostname(b, name) BIO_ctrl(b, BIO_C_SET_CONNECT, 0, \
crypto/openssl/include/openssl/bio.h
518
#define BIO_set_conn_port(b, port) BIO_ctrl(b, BIO_C_SET_CONNECT, 1, \
crypto/openssl/include/openssl/bio.h
520
#define BIO_set_conn_address(b, addr) BIO_ctrl(b, BIO_C_SET_CONNECT, 2, \
crypto/openssl/include/openssl/bio.h
526
#define BIO_get_conn_ip_family(b) BIO_ctrl(b, BIO_C_GET_CONNECT, 3, NULL)
crypto/openssl/include/openssl/bio.h
527
#define BIO_get_conn_mode(b) BIO_ctrl(b, BIO_C_GET_CONNECT, 4, NULL)
crypto/openssl/include/openssl/bio.h
528
#define BIO_set_conn_mode(b, n) BIO_ctrl(b, BIO_C_SET_CONNECT_MODE, (n), NULL)
crypto/openssl/include/openssl/bio.h
529
#define BIO_set_sock_type(b, t) BIO_ctrl(b, BIO_C_SET_SOCK_TYPE, (t), NULL)
crypto/openssl/include/openssl/bio.h
530
#define BIO_get_sock_type(b) BIO_ctrl(b, BIO_C_GET_SOCK_TYPE, 0, NULL)
crypto/openssl/include/openssl/bio.h
531
#define BIO_get0_dgram_bio(b, p) BIO_ctrl(b, BIO_C_GET_DGRAM_BIO, 0, (void *)(BIO **)(p))
crypto/openssl/include/openssl/bio.h
534
#define BIO_set_accept_name(b, name) BIO_ctrl(b, BIO_C_SET_ACCEPT, 0, \
crypto/openssl/include/openssl/bio.h
536
#define BIO_set_accept_port(b, port) BIO_ctrl(b, BIO_C_SET_ACCEPT, 1, \
crypto/openssl/include/openssl/bio.h
543
#define BIO_set_nbio_accept(b, n) BIO_ctrl(b, BIO_C_SET_ACCEPT, 2, (n) ? (void *)"a" : NULL)
crypto/openssl/include/openssl/bio.h
544
#define BIO_set_accept_bios(b, bio) BIO_ctrl(b, BIO_C_SET_ACCEPT, 3, \
crypto/openssl/include/openssl/bio.h
547
#define BIO_get_accept_ip_family(b) BIO_ctrl(b, BIO_C_GET_ACCEPT, 4, NULL)
crypto/openssl/include/openssl/bio.h
548
#define BIO_set_tfo_accept(b, n) BIO_ctrl(b, BIO_C_SET_ACCEPT, 5, (n) ? (void *)"a" : NULL)
crypto/openssl/include/openssl/bio.h
554
#define BIO_set_bind_mode(b, mode) BIO_ctrl(b, BIO_C_SET_BIND_MODE, mode, NULL)
crypto/openssl/include/openssl/bio.h
555
#define BIO_get_bind_mode(b) BIO_ctrl(b, BIO_C_GET_BIND_MODE, 0, NULL)
crypto/openssl/include/openssl/bio.h
561
#define BIO_do_handshake(b) BIO_ctrl(b, BIO_C_DO_STATE_MACHINE, 0, NULL)
crypto/openssl/include/openssl/bio.h
565
#define BIO_get_fd(b, c) BIO_ctrl(b, BIO_C_GET_FD, 0, (char *)(c))
crypto/openssl/include/openssl/bio.h
568
#define BIO_set_fp(b, fp, c) BIO_ctrl(b, BIO_C_SET_FILE_PTR, c, (char *)(fp))
crypto/openssl/include/openssl/bio.h
569
#define BIO_get_fp(b, fpp) BIO_ctrl(b, BIO_C_GET_FILE_PTR, 0, (char *)(fpp))
crypto/openssl/include/openssl/bio.h
572
#define BIO_seek(b, ofs) (int)BIO_ctrl(b, BIO_C_FILE_SEEK, ofs, NULL)
crypto/openssl/include/openssl/bio.h
573
#define BIO_tell(b) (int)BIO_ctrl(b, BIO_C_FILE_TELL, 0, NULL)
crypto/openssl/include/openssl/bio.h
586
#define BIO_read_filename(b, name) (int)BIO_ctrl(b, BIO_C_SET_FILENAME, \
crypto/openssl/include/openssl/bio.h
589
#define BIO_write_filename(b, name) (int)BIO_ctrl(b, BIO_C_SET_FILENAME, \
crypto/openssl/include/openssl/bio.h
591
#define BIO_append_filename(b, name) (int)BIO_ctrl(b, BIO_C_SET_FILENAME, \
crypto/openssl/include/openssl/bio.h
593
#define BIO_rw_filename(b, name) (int)BIO_ctrl(b, BIO_C_SET_FILENAME, \
crypto/openssl/include/openssl/bio.h
602
#define BIO_set_ssl(b, ssl, c) BIO_ctrl(b, BIO_C_SET_SSL, c, (char *)(ssl))
crypto/openssl/include/openssl/bio.h
603
#define BIO_get_ssl(b, sslp) BIO_ctrl(b, BIO_C_GET_SSL, 0, (char *)(sslp))
crypto/openssl/include/openssl/bio.h
604
#define BIO_set_ssl_mode(b, client) BIO_ctrl(b, BIO_C_SSL_MODE, client, NULL)
crypto/openssl/include/openssl/bio.h
606
BIO_ctrl(b, BIO_C_SET_SSL_RENEGOTIATE_BYTES, num, NULL)
crypto/openssl/include/openssl/bio.h
608
BIO_ctrl(b, BIO_C_GET_SSL_NUM_RENEGOTIATES, 0, NULL)
crypto/openssl/include/openssl/bio.h
610
BIO_ctrl(b, BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT, seconds, NULL)
crypto/openssl/include/openssl/bio.h
615
#define BIO_get_mem_data(b, pp) BIO_ctrl(b, BIO_CTRL_INFO, 0, (char *)(pp))
crypto/openssl/include/openssl/bio.h
616
#define BIO_set_mem_buf(b, bm, c) BIO_ctrl(b, BIO_C_SET_BUF_MEM, c, (char *)(bm))
crypto/openssl/include/openssl/bio.h
617
#define BIO_get_mem_ptr(b, pp) BIO_ctrl(b, BIO_C_GET_BUF_MEM_PTR, 0, \
crypto/openssl/include/openssl/bio.h
620
BIO_ctrl(b, BIO_C_SET_BUF_MEM_EOF_RETURN, v, NULL)
crypto/openssl/include/openssl/bio.h
623
#define BIO_get_buffer_num_lines(b) BIO_ctrl(b, BIO_C_GET_BUFF_NUM_LINES, 0, NULL)
crypto/openssl/include/openssl/bio.h
624
#define BIO_set_buffer_size(b, size) BIO_ctrl(b, BIO_C_SET_BUFF_SIZE, size, NULL)
crypto/openssl/include/openssl/bio.h
627
#define BIO_set_buffer_read_data(b, buf, num) BIO_ctrl(b, BIO_C_SET_BUFF_READ_DATA, num, buf)
crypto/openssl/include/openssl/bio.h
630
#define BIO_dup_state(b, ret) BIO_ctrl(b, BIO_CTRL_DUP, 0, (char *)(ret))
crypto/openssl/include/openssl/bio.h
632
#define BIO_reset(b) (int)BIO_ctrl(b, BIO_CTRL_RESET, 0, NULL)
crypto/openssl/include/openssl/bio.h
633
#define BIO_eof(b) (int)BIO_ctrl(b, BIO_CTRL_EOF, 0, NULL)
crypto/openssl/include/openssl/bio.h
634
#define BIO_set_close(b, c) (int)BIO_ctrl(b, BIO_CTRL_SET_CLOSE, (c), NULL)
crypto/openssl/include/openssl/bio.h
635
#define BIO_get_close(b) (int)BIO_ctrl(b, BIO_CTRL_GET_CLOSE, 0, NULL)
crypto/openssl/include/openssl/bio.h
636
#define BIO_pending(b) (int)BIO_ctrl(b, BIO_CTRL_PENDING, 0, NULL)
crypto/openssl/include/openssl/bio.h
637
#define BIO_wpending(b) (int)BIO_ctrl(b, BIO_CTRL_WPENDING, 0, NULL)
crypto/openssl/include/openssl/bio.h
641
#define BIO_flush(b) (int)BIO_ctrl(b, BIO_CTRL_FLUSH, 0, NULL)
crypto/openssl/include/openssl/bio.h
642
#define BIO_get_info_callback(b, cbp) (int)BIO_ctrl(b, BIO_CTRL_GET_CALLBACK, 0, \
crypto/openssl/include/openssl/bio.h
647
#define BIO_buffer_get_num_lines(b) BIO_ctrl(b, BIO_CTRL_GET, 0, NULL)
crypto/openssl/include/openssl/bio.h
648
#define BIO_buffer_peek(b, s, l) BIO_ctrl(b, BIO_CTRL_PEEK, (l), (s))
crypto/openssl/include/openssl/bio.h
651
#define BIO_set_write_buf_size(b, size) (int)BIO_ctrl(b, BIO_C_SET_WRITE_BUF_SIZE, size, NULL)
crypto/openssl/include/openssl/bio.h
652
#define BIO_get_write_buf_size(b, size) (size_t)BIO_ctrl(b, BIO_C_GET_WRITE_BUF_SIZE, size, NULL)
crypto/openssl/include/openssl/bio.h
653
#define BIO_make_bio_pair(b1, b2) (int)BIO_ctrl(b1, BIO_C_MAKE_BIO_PAIR, 0, b2)
crypto/openssl/include/openssl/bio.h
654
#define BIO_destroy_bio_pair(b) (int)BIO_ctrl(b, BIO_C_DESTROY_BIO_PAIR, 0, NULL)
crypto/openssl/include/openssl/bio.h
655
#define BIO_shutdown_wr(b) (int)BIO_ctrl(b, BIO_C_SHUTDOWN_WR, 0, NULL)
crypto/openssl/include/openssl/bio.h
657
#define BIO_get_write_guarantee(b) (int)BIO_ctrl(b, BIO_C_GET_WRITE_GUARANTEE, 0, NULL)
crypto/openssl/include/openssl/bio.h
658
#define BIO_get_read_request(b) (int)BIO_ctrl(b, BIO_C_GET_READ_REQUEST, 0, NULL)
crypto/openssl/include/openssl/bio.h
665
(int)BIO_ctrl(b, BIO_CTRL_DGRAM_CONNECT, 0, (char *)(peer))
crypto/openssl/include/openssl/bio.h
667
(int)BIO_ctrl(b, BIO_CTRL_DGRAM_SET_CONNECTED, 0, (char *)(peer))
crypto/openssl/include/openssl/bio.h
669
(int)BIO_ctrl(b, BIO_CTRL_DGRAM_GET_RECV_TIMER_EXP, 0, NULL)
crypto/openssl/include/openssl/bio.h
671
(int)BIO_ctrl(b, BIO_CTRL_DGRAM_GET_SEND_TIMER_EXP, 0, NULL)
crypto/openssl/include/openssl/bio.h
673
(int)BIO_ctrl(b, BIO_CTRL_DGRAM_GET_PEER, 0, (char *)(peer))
crypto/openssl/include/openssl/bio.h
675
(int)BIO_ctrl(b, BIO_CTRL_DGRAM_SET_PEER, 0, (char *)(peer))
crypto/openssl/include/openssl/bio.h
677
(int)BIO_ctrl(b, BIO_CTRL_DGRAM_DETECT_PEER_ADDR, 0, (char *)(peer))
crypto/openssl/include/openssl/bio.h
679
(unsigned int)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_MTU_OVERHEAD, 0, NULL)
crypto/openssl/include/openssl/bio.h
681
(int)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_LOCAL_ADDR_CAP, 0, NULL)
crypto/openssl/include/openssl/bio.h
683
(int)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_LOCAL_ADDR_ENABLE, 0, (char *)(penable))
crypto/openssl/include/openssl/bio.h
685
(int)BIO_ctrl((b), BIO_CTRL_DGRAM_SET_LOCAL_ADDR_ENABLE, (enable), NULL)
crypto/openssl/include/openssl/bio.h
687
(uint32_t)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_EFFECTIVE_CAPS, 0, NULL)
crypto/openssl/include/openssl/bio.h
689
(uint32_t)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_CAPS, 0, NULL)
crypto/openssl/include/openssl/bio.h
691
(int)BIO_ctrl((b), BIO_CTRL_DGRAM_SET_CAPS, (long)(caps), NULL)
crypto/openssl/include/openssl/bio.h
693
(unsigned int)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_NO_TRUNC, 0, NULL)
crypto/openssl/include/openssl/bio.h
695
(int)BIO_ctrl((b), BIO_CTRL_DGRAM_SET_NO_TRUNC, (enable), NULL)
crypto/openssl/include/openssl/bio.h
697
(unsigned int)BIO_ctrl((b), BIO_CTRL_DGRAM_GET_MTU, 0, NULL)
crypto/openssl/include/openssl/bio.h
699
(int)BIO_ctrl((b), BIO_CTRL_DGRAM_SET_MTU, (mtu), NULL)
crypto/openssl/include/openssl/bio.h
701
(int)BIO_ctrl((b), BIO_CTRL_DGRAM_SET0_LOCAL_ADDR, 0, (addr))
crypto/openssl/include/openssl/bio.h
704
#define BIO_set_prefix(b, p) BIO_ctrl((b), BIO_CTRL_SET_PREFIX, 0, (void *)(p))
crypto/openssl/include/openssl/bio.h
705
#define BIO_set_indent(b, i) BIO_ctrl((b), BIO_CTRL_SET_INDENT, (i), NULL)
crypto/openssl/include/openssl/bio.h
706
#define BIO_get_indent(b) BIO_ctrl((b), BIO_CTRL_GET_INDENT, 0, NULL)
crypto/openssl/include/openssl/bio.h
758
long BIO_ctrl(BIO *bp, int cmd, long larg, void *parg);
crypto/openssl/include/openssl/core_dispatch.h
174
OSSL_CORE_MAKE_FUNC(int, BIO_ctrl, (OSSL_CORE_BIO *bio, int cmd, long num, void *ptr))
crypto/openssl/include/openssl/evp.h
684
#define BIO_set_md(b, md) BIO_ctrl(b, BIO_C_SET_MD, 0, (void *)(md))
crypto/openssl/include/openssl/evp.h
686
#define BIO_get_md(b, mdp) BIO_ctrl(b, BIO_C_GET_MD, 0, (mdp))
crypto/openssl/include/openssl/evp.h
687
#define BIO_get_md_ctx(b, mdcp) BIO_ctrl(b, BIO_C_GET_MD_CTX, 0, (mdcp))
crypto/openssl/include/openssl/evp.h
688
#define BIO_set_md_ctx(b, mdcp) BIO_ctrl(b, BIO_C_SET_MD_CTX, 0, (mdcp))
crypto/openssl/include/openssl/evp.h
689
#define BIO_get_cipher_status(b) BIO_ctrl(b, BIO_C_GET_CIPHER_STATUS, 0, NULL)
crypto/openssl/include/openssl/evp.h
690
#define BIO_get_cipher_ctx(b, c_pp) BIO_ctrl(b, BIO_C_GET_CIPHER_CTX, 0, (c_pp))
crypto/openssl/ssl/bio_ssl.c
260
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/ssl/bio_ssl.c
262
ret = BIO_ctrl(sc->rbio, cmd, num, ptr);
crypto/openssl/ssl/bio_ssl.c
326
ret = BIO_ctrl(SSL_get_wbio(ssl), cmd, num, ptr);
crypto/openssl/ssl/bio_ssl.c
335
ret = BIO_ctrl(SSL_get_wbio(ssl), cmd, num, ptr);
crypto/openssl/ssl/bio_ssl.c
395
ret = BIO_ctrl(SSL_get_rbio(ssl), cmd, num, ptr);
crypto/openssl/ssl/bio_ssl.c
409
ret = BIO_ctrl(SSL_get_rbio(ssl), cmd, num, ptr);
crypto/openssl/ssl/d1_lib.c
275
BIO_ctrl(bio, BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT, 0, &tv);
crypto/openssl/ssl/d1_lib.c
376
mtu = BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_GET_FALLBACK_MTU, 0, NULL);
crypto/openssl/ssl/d1_lib.c
871
BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 1,
crypto/openssl/ssl/d1_lib.c
877
BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_SAVE_SHUTDOWN, 0, NULL);
crypto/openssl/ssl/d1_lib.c
894
s->d1->mtu = BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_QUERY_MTU, 0, NULL);
crypto/openssl/ssl/d1_lib.c
903
BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SET_MTU,
crypto/openssl/ssl/record/rec_layer_d1.c
122
BIO_ctrl(s->rbio, BIO_CTRL_DGRAM_SCTP_GET_RCVINFO,
crypto/openssl/ssl/record/rec_layer_d1.c
158
BIO_ctrl(s->rbio, BIO_CTRL_DGRAM_SCTP_SET_RCVINFO,
crypto/openssl/ssl/statem/statem.c
390
BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE,
crypto/openssl/ssl/statem/statem.c
519
BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_SET_IN_HANDSHAKE,
crypto/openssl/ssl/statem/statem_clnt.c
1789
BIO_ctrl(SSL_get_wbio(ssl),
crypto/openssl/ssl/statem/statem_clnt.c
3683
BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
crypto/openssl/ssl/statem/statem_clnt.c
881
BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
crypto/openssl/ssl/statem/statem_clnt.c
894
BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
crypto/openssl/ssl/statem/statem_dtls.c
256
if (retry && BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_MTU_EXCEEDED, 0, NULL) > 0) {
crypto/openssl/ssl/statem/statem_lib.c
835
BIO_ctrl(SSL_get_wbio(SSL_CONNECTION_GET_SSL(s)),
crypto/openssl/ssl/statem/statem_srvr.c
1007
BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
crypto/openssl/ssl/statem/statem_srvr.c
1032
BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_NEXT_AUTH_KEY,
crypto/openssl/ssl/statem/statem_srvr.c
3522
BIO_ctrl(s->wbio, BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
crypto/openssl/ssl/statem/statem_srvr.c
959
BIO_ctrl(SSL_get_wbio(ssl), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY,
crypto/openssl/test/asynciotest.c
270
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/test/bio_core_test.c
43
return BIO_ctrl(bio->bio, cmd, num, ptr);
crypto/openssl/test/dtlstest.c
278
BIO_ctrl(mempackbio, MEMPACKET_CTRL_SET_DROP_EPOCH, epoch, NULL);
crypto/openssl/test/dtlstest.c
279
BIO_ctrl(mempackbio, MEMPACKET_CTRL_SET_DROP_REC, idx, NULL);
crypto/openssl/test/dtlstest.c
288
if (!TEST_int_eq((int)BIO_ctrl(mempackbio, MEMPACKET_CTRL_GET_DROP_REC, 0,
crypto/openssl/test/dtlstest.c
372
BIO_ctrl(SSL_get_wbio(clientssl), MEMPACKET_CTRL_SET_DUPLICATE_REC, 1, NULL);
crypto/openssl/test/dtlstest.c
373
BIO_ctrl(SSL_get_wbio(serverssl), MEMPACKET_CTRL_SET_DUPLICATE_REC, 1, NULL);
crypto/openssl/test/helpers/noisydgrambio.c
106
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/test/helpers/pktsplitbio.c
27
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/test/helpers/quictestlib.c
118
(void)BIO_ctrl(noiseargs->cbio, BIO_CTRL_NOISE_BACK_OFF, 1, NULL);
crypto/openssl/test/helpers/quictestlib.c
119
(void)BIO_ctrl(noiseargs->sbio, BIO_CTRL_NOISE_BACK_OFF, 1, NULL);
crypto/openssl/test/helpers/quictestlib.c
1261
return BIO_ctrl(next, cmd, larg, parg);
crypto/openssl/test/helpers/quictestlib.c
1338
if (!TEST_int_eq(BIO_ctrl(sbio, BIO_CTRL_NOISE_RATE, noise_rate, NULL), 1))
crypto/openssl/test/helpers/quictestlib.c
1340
if (!TEST_int_eq(BIO_ctrl(cbio, BIO_CTRL_NOISE_RATE, noise_rate, NULL), 1))
crypto/openssl/test/helpers/quictestlib.c
1343
if (!TEST_int_eq(BIO_ctrl(cbio, BIO_CTRL_NOISE_SEND_BANDWIDTH,
crypto/openssl/test/helpers/quictestlib.c
1347
if (!TEST_int_eq(BIO_ctrl(sbio, BIO_CTRL_NOISE_SEND_BANDWIDTH,
crypto/openssl/test/helpers/quictestlib.c
284
if (!TEST_int_eq(BIO_ctrl(cbio, BIO_CTRL_NOISE_SET_NOW_CB,
crypto/openssl/test/helpers/quictestlib.c
296
if (!TEST_int_eq(BIO_ctrl(sbio, BIO_CTRL_NOISE_SET_NOW_CB,
crypto/openssl/test/helpers/quictestlib.c
302
(void)BIO_ctrl(sbio, BIO_CTRL_NOISE_BACK_OFF, 2, NULL);
crypto/openssl/test/helpers/ssltestlib.c
238
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/test/helpers/ssltestlib.c
941
return BIO_ctrl(BIO_next(bio), cmd, num, ptr);
crypto/openssl/test/sslapitest.c
12193
if (!TEST_true(BIO_ctrl(bretry, MAYBE_RETRY_CTRL_SET_RETRY_AFTER_CNT, 1,
crypto/openssl/test/sslcorrupttest.c
71
ret = BIO_ctrl(next, cmd, num, ptr);
crypto/openssl/test/tls13ccstest.c
228
ret = BIO_ctrl(next, cmd, num, ptr);