/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
D | bio.rs | 5 pub fn BIO_set_flags(b: *mut BIO, flags: c_int); in BIO_set_flags() 6 pub fn BIO_clear_flags(b: *mut BIO, flags: c_int); in BIO_clear_flags() 40 pub fn BIO_new_fp(stream: *mut FILE, close_flag: c_int) -> *mut BIO; in BIO_new_fp() 42 pub fn BIO_set_data(a: *mut BIO, data: *mut c_void); in BIO_set_data() 46 pub fn BIO_set_init(a: *mut BIO, init: c_int); in BIO_set_init() 47 pub fn BIO_write(b: *mut BIO, buf: *const c_void, len: c_int) -> c_int; in BIO_write() 48 pub fn BIO_read(b: *mut BIO, buf: *mut c_void, len: c_int) -> c_int; in BIO_read() 49 pub fn BIO_ctrl(b: *mut BIO, cmd: c_int, larg: c_long, parg: *mut c_void) -> c_long; in BIO_ctrl() 50 pub fn BIO_free_all(b: *mut BIO); in BIO_free_all() 61 pub fn BIO_new_socket(sock: c_int, close_flag: c_int) -> *mut BIO; in BIO_new_socket() [all …]
|
D | pem.rs | 82 bio: *mut BIO, in PEM_read_bio_X509() 88 bio: *mut BIO, in PEM_read_bio_X509_REQ() 94 bio: *mut BIO, in PEM_read_bio_X509_CRL() 100 bio: *mut BIO, in PEM_read_bio_RSAPrivateKey() 106 bio: *mut BIO, in PEM_read_bio_RSAPublicKey() 111 pub fn PEM_write_bio_RSAPublicKey(bp: *mut BIO, rsa: *const RSA) -> c_int; in PEM_write_bio_RSAPublicKey() 113 bio: *mut BIO, in PEM_read_bio_RSA_PUBKEY() 119 bp: *mut BIO, in PEM_read_bio_DSAPrivateKey() 125 bp: *mut BIO, in PEM_read_bio_DSA_PUBKEY() 131 bio: *mut BIO, in PEM_read_bio_ECPrivateKey() [all …]
|
D | cms.rs | 27 pub fn SMIME_read_CMS(bio: *mut BIO, bcont: *mut *mut BIO) -> *mut CMS_ContentInfo; in SMIME_read_CMS() 34 data: *mut BIO, in CMS_sign() 43 detached_data: *mut BIO, in CMS_verify() 44 out: *mut BIO, in CMS_verify() 51 data: *mut BIO, in CMS_encrypt() 61 dcont: *mut BIO, in CMS_decrypt() 62 out: *mut BIO, in CMS_decrypt()
|
D | pkcs7.rs | 24 b: *mut BIO, in PKCS7_encrypt() 33 indata: *mut BIO, in PKCS7_verify() 34 out: *mut BIO, in PKCS7_verify() 48 data: *mut BIO, in PKCS7_sign() 56 data: *mut BIO, in PKCS7_decrypt() 63 out: *mut BIO, in SMIME_write_PKCS7() 65 data: *mut BIO, in SMIME_write_PKCS7() 69 pub fn SMIME_read_PKCS7(bio: *mut BIO, bcont: *mut *mut BIO) -> *mut PKCS7; in SMIME_read_PKCS7()
|
D | asn1.rs | 32 pub fn ASN1_GENERALIZEDTIME_print(b: *mut BIO, tm: *const ASN1_GENERALIZEDTIME) -> c_int; in ASN1_GENERALIZEDTIME_print() 42 pub fn ASN1_TIME_print(b: *mut BIO, tm: *const ASN1_TIME) -> c_int; in ASN1_TIME_print()
|
D | x509v3.rs | 92 out: *mut BIO, in X509V3_EXT_print()
|
D | x509.rs | 300 pub fn d2i_X509_bio(b: *mut BIO, a: *mut *mut X509) -> *mut X509; in d2i_X509_bio() 645 pub fn X509_print(bio: *mut BIO, x509: *mut X509) -> c_int; in X509_print() 646 pub fn X509_REQ_print(bio: *mut BIO, req: *mut X509_REQ) -> c_int; in X509_REQ_print()
|
D | ssl.rs | 488 pub fn SSL_set_bio(ssl: *mut SSL, rbio: *mut BIO, wbio: *mut BIO); in SSL_set_bio() 489 pub fn SSL_get_rbio(ssl: *const SSL) -> *mut BIO; in SSL_get_rbio() 490 pub fn SSL_get_wbio(ssl: *const SSL) -> *mut BIO; in SSL_get_wbio()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/ |
D | bio.rs | 13 pub unsafe fn BIO_set_retry_read(b: *mut BIO) { in BIO_set_retry_read() 17 pub unsafe fn BIO_set_retry_write(b: *mut BIO) { in BIO_set_retry_write() 21 pub unsafe fn BIO_clear_retry_flags(b: *mut BIO) { in BIO_clear_retry_flags() 31 pub unsafe fn BIO_get_mem_data(b: *mut BIO, pp: *mut *mut c_char) -> c_long { in BIO_get_mem_data() 40 write: unsafe extern "C" fn(*mut BIO, *const c_char, c_int) -> c_int, in BIO_meth_set_write() 46 read: unsafe extern "C" fn(*mut BIO, *mut c_char, c_int) -> c_int, in BIO_meth_set_read() 52 read: unsafe extern "C" fn(*mut BIO, *const c_char) -> c_int, in BIO_meth_set_puts() 58 read: unsafe extern "C" fn(*mut BIO, c_int, c_long, *mut c_void) -> c_long, in BIO_meth_set_ctrl()
|
/third_party/openssl/crypto/bio/ |
D | bio_meth.c | 89 int BIO_meth_set_write(BIO_METHOD *biom, in BIO_meth_set_write() 97 int BIO_meth_set_write_ex(BIO_METHOD *biom, in BIO_meth_set_write_ex() 135 int BIO_meth_set_read(BIO_METHOD *biom, in BIO_meth_set_read() 143 int BIO_meth_set_read_ex(BIO_METHOD *biom, in BIO_meth_set_read_ex() 156 int BIO_meth_set_puts(BIO_METHOD *biom, in BIO_meth_set_puts() 168 int BIO_meth_set_gets(BIO_METHOD *biom, in BIO_meth_set_gets() 180 int BIO_meth_set_ctrl(BIO_METHOD *biom, in BIO_meth_set_ctrl() 192 int BIO_meth_set_create(BIO_METHOD *biom, int (*create) (BIO *)) in BIO_meth_set_create() 203 int BIO_meth_set_destroy(BIO_METHOD *biom, int (*destroy) (BIO *)) in BIO_meth_set_destroy() 214 int BIO_meth_set_callback_ctrl(BIO_METHOD *biom, in BIO_meth_set_callback_ctrl()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
D | bio.rs | 36 pub fn new<S: Read + Write>(stream: S) -> Result<(*mut BIO, BioMethod), ErrorStack> { in new() 74 pub unsafe fn set_dtls_mtu_size<S>(bio: *mut BIO, mtu_size: usize) { in set_dtls_mtu_size() 88 unsafe extern "C" fn bwrite<S: Write>(bio: *mut BIO, buf: *const c_char, len: c_int) -> c_int { in bwrite() 110 unsafe extern "C" fn bread<S: Read>(bio: *mut BIO, buf: *mut c_char, len: c_int) -> c_int { in bread() 140 unsafe extern "C" fn bputs<S: Write>(bio: *mut BIO, s: *const c_char) -> c_int { in bputs() 145 bio: *mut BIO, in ctrl()
|
D | mod.rs | 2285 fn get_raw_rbio(&self) -> *mut ffi::BIO { in get_raw_rbio()
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
D | bio.rs | 35 pub fn as_ptr(&self) -> *mut ffi::BIO { in as_ptr() 58 pub fn as_ptr(&self) -> *mut ffi::BIO { in as_ptr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUMachineModuleInfo.h | 131 const auto &BIO = getSyncScopeInclusionOrdering(B); in isSyncScopeInclusion() local
|
/third_party/openssl/crypto/pem/ |
D | pem_pkey.c | 306 PEM_write_cb_ex_fnsig(PrivateKey, EVP_PKEY, BIO, write_bio) in PEM_write_cb_ex_fnsig() argument 320 PEM_write_cb_fnsig(PrivateKey, EVP_PKEY, BIO, write_bio) in PEM_write_cb_fnsig() argument 368 PEM_write_fnsig(Parameters, EVP_PKEY, BIO, write_bio) in PEM_write_fnsig() argument
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | ossl_typ.h | 79 typedef struct bio_st BIO; typedef
|
/third_party/openssl/include/openssl/ |
D | types.h | 86 typedef struct bio_st BIO; typedef
|
/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/internal/ |
D | ssl_types.h | 46 typedef void BIO; typedef
|
/third_party/python/Lib/lib2to3/tests/data/ |
D | infinite_recursion.py | 271 BIO = bio_st variable
|