| /src/sys/arch/i386/stand/efiboot/ |
| efidisk.h | 36 EFI_BLOCK_IO *bio; member in struct:efidiskinfo
|
| /src/crypto/external/apache2/openssl/dist/fuzz/ |
| acert.c | 12 #include <openssl/bio.h> 32 BIO *bio = BIO_new(BIO_s_null()); local 34 X509_ACERT_print(bio, acert); 35 BIO_free(bio);
|
| crl.c | 12 #include <openssl/bio.h> 31 BIO *bio = BIO_new(BIO_s_null()); local 32 X509_CRL_print(bio, crl); 33 BIO_free(bio);
|
| ct.c | 34 BIO *bio = BIO_new(BIO_s_null()); local 35 SCT_LIST_print(scts, bio, 4, "\n", NULL); 36 BIO_free(bio);
|
| decoder.c | 41 BIO *bio; local 43 bio = BIO_new(BIO_s_null()); 52 EVP_PKEY_print_public(bio, pkey, 1, pctx); 53 EVP_PKEY_print_private(bio, pkey, 1, pctx); 54 EVP_PKEY_print_params(bio, pkey, 1, pctx); 82 BIO_free(bio);
|
| asn1.c | 37 #include <openssl/bio.h> 222 BIO *bio = BIO_new(BIO_s_null()); \ 224 if (bio != NULL) { \ 225 PRINT(bio, type); \ 226 BIO_free(bio); \ 242 BIO *bio = BIO_new(BIO_s_null()); \ 244 if (bio != NULL) { \ 245 PRINT(bio, type, 0); 320 BIO *bio = BIO_new(BIO_s_null()); local [all...] |
| /src/crypto/external/bsd/openssl/dist/fuzz/ |
| crl.c | 12 #include <openssl/bio.h> 31 BIO *bio = BIO_new(BIO_s_null()); local 32 X509_CRL_print(bio, crl); 33 BIO_free(bio);
|
| ct.c | 34 BIO *bio = BIO_new(BIO_s_null()); local 35 SCT_LIST_print(scts, bio, 4, "\n", NULL); 36 BIO_free(bio);
|
| asn1.c | 37 #include <openssl/bio.h> 219 BIO *bio = BIO_new(BIO_s_null()); \ 221 if (bio != NULL) { \ 222 PRINT(bio, type); \ 223 BIO_free(bio); \ 238 BIO *bio = BIO_new(BIO_s_null()); \ 240 if (bio != NULL) { \ 241 PRINT(bio, type, 0); 320 BIO *bio = BIO_new(BIO_s_null()); local [all...] |
| /src/crypto/external/bsd/openssl.old/dist/fuzz/ |
| crl.c | 12 #include <openssl/bio.h> 31 BIO *bio = BIO_new(BIO_s_null()); local 32 X509_CRL_print(bio, crl); 33 BIO_free(bio);
|
| ct.c | 34 BIO *bio = BIO_new(BIO_s_null()); local 35 SCT_LIST_print(scts, bio, 4, "\n", NULL); 36 BIO_free(bio);
|
| x509.c | 12 #include <openssl/bio.h> 35 BIO *bio = BIO_new(BIO_s_null()); local 37 X509_print(bio, x509); 38 BIO_free(bio);
|
| asn1.c | 33 #include <openssl/bio.h> 214 BIO *bio = BIO_new(BIO_s_null()); \ 216 PRINT(bio, type); \ 217 BIO_free(bio); \ 231 BIO *bio = BIO_new(BIO_s_null()); \ 233 PRINT(bio, type, 0); \ 234 BIO_free(bio); \ 247 BIO *bio = BIO_new(BIO_s_null()); 304 BIO *bio = BIO_new(BIO_s_null()); local [all...] |
| /src/crypto/external/apache2/openssl/dist/test/ |
| membio_test.c | 10 #include <openssl/bio.h> 16 BIO *bio = BIO_new(BIO_s_dgram_mem()), *rbio = NULL; local 24 if (!TEST_ptr(bio)) 31 /* Setting the EOF return value on a non datagram mem BIO should be fine */ 35 /* Setting the EOF return value on a datagram mem BIO should fail */ 36 if (!TEST_int_le(BIO_set_mem_eof_return(bio, 0), 0)) 40 if (!TEST_int_eq(BIO_write(bio, msg1, sizeof(msg1)), sizeof(msg1))) 42 if (!TEST_int_eq(BIO_write(bio, msg2, sizeof(msg2)), sizeof(msg2))) 44 if (!TEST_int_eq(BIO_write(bio, msg3, sizeof(msg3)), sizeof(msg3)) [all...] |
| x509_req_test.c | 27 BIO *bio = NULL; local 35 if (!TEST_ptr(bio = BIO_new_file(certFilePath, "r"))) 37 req = PEM_read_bio_X509_REQ(bio, NULL, 0, NULL); 51 BIO_free(bio);
|
| /src/crypto/external/apache2/openssl/dist/test/testutil/ |
| load.c | 21 BIO *bio = NULL; local 23 if (!TEST_ptr(file) || !TEST_ptr(bio = BIO_new(BIO_s_file()))) 25 if (TEST_int_gt(BIO_read_filename(bio, file), 0) 27 (void)TEST_ptr(cert = PEM_read_bio_X509(bio, &cert, NULL, NULL)); 29 BIO_free(bio); 36 BIO *bio; local 39 if (!TEST_ptr(file) || (bio = BIO_new_file(file, "r")) == NULL) 44 BIO_free(bio); 72 BIO *bio = NULL; local 95 BIO *bio = NULL; local [all...] |
| /src/crypto/external/bsd/openssl/dist/test/testutil/ |
| load.c | 21 BIO *bio = NULL; local 23 if (!TEST_ptr(file) || !TEST_ptr(bio = BIO_new(BIO_s_file()))) 25 if (TEST_int_gt(BIO_read_filename(bio, file), 0) 27 (void)TEST_ptr(cert = PEM_read_bio_X509(bio, &cert, NULL, NULL)); 29 BIO_free(bio); 36 BIO *bio; local 39 if (!TEST_ptr(file) || (bio = BIO_new_file(file, "r")) == NULL) 44 BIO_free(bio); 72 BIO *bio = NULL; local 95 BIO *bio = NULL; local [all...] |
| /src/sys/fs/sysvbfs/ |
| bfs_sysvbfs.c | 60 struct bc_io_ops *bio; local 62 if ((bio = malloc(sizeof(*bio), M_TEMP, M_WAITOK | M_ZERO)) == NULL) { 67 bio->io.read = bc_read; 68 bio->io.read_n = bc_read_n; 69 bio->io.write = bc_write; 70 bio->io.write_n = bc_write_n; 71 bio->vp = vp; 72 bio->cred = NOCRED; /* sysvbfs layer check cred. */ 74 return bfs_init2(bfsp, 0, (struct sector_io_ops *)bio, false) 103 struct bc_io_ops *bio = self; local 139 struct bc_io_ops *bio = self; local [all...] |
| /src/crypto/external/apache2/openssl/dist/apps/lib/ |
| log.c | 47 BIO *bio, *pre = BIO_new(BIO_f_prefix()); local 51 bio = BIO_push(pre, bio_err); 52 (void)BIO_vprintf(bio, fmt, ap); 53 (void)BIO_printf(bio, "\n"); 54 (void)BIO_flush(bio); 82 BIO *out = OSSL_trace_begin(category);
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| pkcs7_test.c | 55 BIO *msg_bio = NULL, *x509_bio = NULL, *bio = NULL; local 71 if (!TEST_ptr(bio = BIO_new(BIO_s_mem()))) 74 BIO_puts(bio, sig[i]); 82 && TEST_ptr(p7 = SMIME_read_PKCS7(bio, NULL)) 92 BIO_free(bio);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/err/ |
| err_prn.c | 47 return BIO_write((BIO *)bp, str, len); 50 void ERR_print_errors(BIO *bp) 58 BIO *bio = BIO_new_fp(fp, BIO_NOCLOSE); local 59 if (bio == NULL) 62 ERR_print_errors_cb(print_bio, bio); 63 BIO_free(bio);
|
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| x509_check_cert_pkey_test.c | 30 BIO *bio = NULL; local 59 if (!TEST_ptr(bio = BIO_new_file(k, "r"))) 62 if (!TEST_ptr(pkey = PEM_read_bio_PrivateKey(bio, NULL, NULL, NULL))) 65 BIO_free(bio); 68 if (!TEST_ptr(bio = BIO_new_file(c, "r"))) 73 x509 = PEM_read_bio_X509(bio, NULL, NULL, NULL); 82 x509_req = PEM_read_bio_X509_REQ(bio, NULL, NULL, NULL); 102 BIO_free(bio);
|
| /src/sys/fs/v7fs/ |
| v7fs_io_kern.c | 167 struct local_io *bio = (struct local_io *)self; local 170 if (bread(bio->vp, block, DEV_BSIZE, 0, &bp) != 0) 202 struct local_io *bio = (struct local_io *)self; local 205 if ((bp = getblk(bio->vp, block, DEV_BSIZE, 0, 0)) == 0) {
|
| /src/crypto/external/apache2/openssl/dist/crypto/bio/ |
| ossl_core_bio.c | 14 * Core BIO structure 15 * This is distinct from a BIO to prevent casting between the two which could 20 BIO *bio; member in struct:ossl_core_bio_st 48 res = BIO_free(cb->bio); 56 OSSL_CORE_BIO *ossl_core_bio_new_from_bio(BIO *bio) 60 if (cb == NULL || !BIO_up_ref(bio)) { 64 cb->bio = bio; [all...] |
| /src/crypto/external/apache2/openssl/dist/demos/guide/ |
| quic-client-block.c | 24 #include <openssl/bio.h> 28 /* Helper function to create a BIO connected to the server */ 29 static BIO *create_socket_bio(const char *hostname, const char *port, 35 BIO *bio; local 92 /* Create a BIO to wrap the socket */ 93 bio = BIO_new(BIO_s_datagram()); 94 if (bio == NULL) { 100 * Associate the newly created BIO with the underlying socket. By 102 * the BIO is freed. Alternatively you can use BIO_NOCLOSE, in whic 121 BIO *bio = NULL; local [all...] |