MCPcopy Index your code
hub / github.com/RustPython/RustPython / BIO_ctrl_pending

Function BIO_ctrl_pending

crates/stdlib/src/openssl.rs:3563–3565  ·  view source on GitHub ↗
(bio: *mut sys::BIO)

Source from the content-addressed store, hash-verified

3561
3562 #[allow(non_snake_case)]
3563 unsafe fn BIO_ctrl_pending(bio: *mut sys::BIO) -> usize {
3564 unsafe { sys::BIO_ctrl(bio, BIO_CTRL_PENDING, 0, std::ptr::null_mut()) as usize }
3565 }
3566
3567 #[allow(non_snake_case)]
3568 unsafe fn BIO_set_mem_eof_return(bio: *mut sys::BIO, eof: libc::c_int) -> libc::c_int {

Callers 3

pendingMethod · 0.85
eofMethod · 0.85
readMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected