Searched defs:bio (Results 1 - 5 of 5) sorted by relevance
| /illumos-gate/usr/src/lib/libpkg/common/ |
| H A D | dstream.c | 728 * bio - BIO object to dump data into 734 BIO_ds_dump(PKG_ERR *err, char *device, BIO *bio) argument 745 if (BIO_write(bio, readbuf, amtread) != amtread) { 764 * bio - BIO object to dump data into 771 BIO_ds_dump_header(PKG_ERR *err, BIO *bio) argument 778 if (BIO_write(bio, ds_header_raw, ds_headsize) != ds_headsize) { 779 pkgerr_add(err, PKGERR_WRITE, ERR_WRITE, "bio",
|
| H A D | pkgtrans.c | 1689 * bio - BIO object to dump data to 1695 pkgdump(char *srcinst, BIO *bio) argument 1798 n = BIO_dump_cmd(cmd, bio); 1854 * Arguments: bio - BIO object to dump data to 1864 dump_hdr_and_pkgs(BIO *bio, struct dm_buf *hdr, char **pkglist) argument 1874 (void) BIO_write(bio, (hdr->text_buffer + block_cnt), BLK_SIZE); 1901 if (pkgdump(pkglist[i], bio)) { 1923 * bio - BIO to dump output of command to 1929 BIO_dump_cmd(char *cmd, BIO *bio) argument 1943 if (BIO_write(bio, bu [all...] |
| /illumos-gate/usr/src/cmd/sendmail/src/ |
| H A D | tls.c | 18 # include <openssl/bio.h> 950 BIO *bio; local 952 if ((bio = BIO_new_file(dhparam, "r")) != NULL) 954 dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL); 955 BIO_free(bio);
|
| /illumos-gate/usr/src/lib/krb5/plugins/preauth/pkinit/ |
| H A D | pkinit_crypto_openssl.c | 6495 BIO *out=NULL,*etmp=NULL,*bio=NULL; local 6630 bio = BIO_new_mem_buf(data_body->data, data_body->length); 6632 bio=BIO_new(BIO_s_mem()); 6633 BIO_set_mem_eof_return(bio,0); 6635 BIO_push(out,bio); 6636 bio=NULL; 6644 if (bio != NULL) BIO_free_all(bio);
|
| /illumos-gate/usr/src/lib/libkmf/plugins/kmf_openssl/common/ |
| H A D | openssl_spi.c | 79 #include <openssl/bio.h> 3327 BIO *bio = NULL; local 3340 if ((bio = BIO_new_file(filename, "wb")) == NULL) { 3465 if (!i2d_PKCS12_bio(bio, p12_elem)) { 3475 if (bio != NULL) 3476 (void) BIO_free_all(bio); 4377 BIO *bio = NULL; local 4403 bio = BIO_new_file(filename, "rb"); 4404 if (bio == NULL) { 4410 rv = extract_pkcs12(bio, (uchar_ 4743 BIO *bio = NULL; local [all...] |
Completed in 96 milliseconds