Searched refs:BIO_pending (Results 1 – 12 of 12) sorted by relevance
/third_party/openssl/doc/man3/ |
D | BIO_ctrl.pod | 7 BIO_pending, BIO_wpending, BIO_ctrl_pending, BIO_ctrl_wpending, 29 int BIO_pending(BIO *b); 69 BIO_pending(), BIO_ctrl_pending(), BIO_wpending() and BIO_ctrl_wpending() 72 return a size_t type and are functions, BIO_pending() and BIO_wpending() are 92 BIO_pending(), BIO_ctrl_pending(), BIO_wpending() and BIO_ctrl_wpending() 102 The return values of BIO_pending() and BIO_wpending() may not reliably
|
D | BIO_s_bio.pod | 107 flush any data in the write buffer. This can be done by calling BIO_pending()
|
/third_party/node/src/ |
D | tls_wrap.cc | 316 if (BIO_pending(enc_out_) == 0) { in EncOut() 571 if (BIO_pending(enc_out_) != 0) in ClearOut() 739 if (BIO_pending(enc_out_) == 0) { in DoWrite() 1251 uint32_t write_queue_size = BIO_pending(wrap->enc_out_); in GetWriteQueueSize()
|
/third_party/grpc/src/core/tsi/ |
D | ssl_transport_security.cc | 1021 int pending_in_ssl = static_cast<int>(BIO_pending(impl->network_io)); in ssl_protector_protect() 1080 pending = static_cast<int>(BIO_pending(impl->network_io)); in ssl_protector_protect_flush() 1093 pending = static_cast<int>(BIO_pending(impl->network_io)); in ssl_protector_protect_flush() 1408 return BIO_pending(impl->network_io) == 0 ? TSI_OK : TSI_INCOMPLETE_DATA; in ssl_handshaker_get_bytes_to_send_to_peer() 1444 if (BIO_pending(impl->network_io) == 0) { in ssl_handshaker_process_bytes_from_peer() 1485 size_t bytes_in_ssl = BIO_pending(SSL_get_rbio(impl->ssl)); in ssl_bytes_remaining()
|
/third_party/openssl/ssl/ |
D | bio_ssl.c | 319 ret = BIO_pending(ssl->rbio); in ssl_ctrl()
|
/third_party/openssl/apps/ |
D | enc.c | 590 while (BIO_pending(rbio) || !BIO_eof(rbio)) { in enc_main()
|
D | dgst.c | 508 while (BIO_pending(bp) || !BIO_eof(bp)) { in do_fp()
|
D | s_client.c | 2442 && !BIO_pending(fbio) in s_client_main() 2443 && !BIO_pending(sbio) in s_client_main()
|
/third_party/openssl/util/ |
D | private.num | 129 BIO_pending define
|
/third_party/openssl/include/openssl/ |
D | bio.h | 484 # define BIO_pending(b) (int)BIO_ctrl(b,BIO_CTRL_PENDING,0,NULL) macro
|
/third_party/openssl/test/ |
D | ssltest_old.c | 2654 i = (int)BIO_pending(s_bio); in doit() 2658 i = (int)BIO_pending(c_bio); in doit()
|
/third_party/grpc/src/boringssl/ |
D | boringssl_prefix_symbols.h | 814 #define BIO_pending BORINGSSL_ADD_PREFIX(BORINGSSL_PREFIX, BIO_pending) macro
|