HomeSort by relevance Sort by last modified time
    Searched refs:bio (Results 76 - 100 of 190) sorted by null

1 2 34 5 6 7 8

  /external/openssl/crypto/err/
err_all.c 66 #include <openssl/bio.h>
  /external/openssl/crypto/pkcs7/
sign.c 60 #include <openssl/bio.h>
73 BIO *in;
74 BIO *data,*p7bio;
enc.c 60 #include <openssl/bio.h>
71 BIO *in;
72 BIO *data,*p7bio;
pk7_attr.c 61 #include <openssl/bio.h>
  /external/kernel-headers/original/linux/raid/
md_k.h 18 /* and dm-bio-list.h is not under include/linux because.... ??? */
19 #include "../../../drivers/md/dm-bio-list.h"
208 struct bio *biolist; /* bios that need to be retried
264 int (*make_request)(request_queue_t *q, struct bio *bio);
  /external/openssl/ssl/
ssl_lib.c 527 /* If the buffering BIO is in place, pop it off */
593 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio)
595 /* If the output buffering BIO is still in place, remove it
613 BIO *SSL_get_rbio(const SSL *s)
616 BIO *SSL_get_wbio(const SSL *s)
627 BIO *b,*r;
639 BIO *b,*r;
652 BIO *bio=NULL local
671 BIO *bio=NULL; local
693 BIO *bio=NULL; local
2310 BIO *bio; local
    [all...]
d1_pkt.c 908 BIO *bio; local
910 bio=SSL_get_rbio(s);
912 BIO_clear_retry_flags(bio);
913 BIO_set_retry_read(bio);
998 BIO *bio; local
1004 bio=SSL_get_rbio(s);
1005 BIO_clear_retry_flags(bio);
1006 BIO_set_retry_read(bio);
1203 BIO *bio; local
    [all...]
Makefile 108 bio_ssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h
126 d1_both.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
146 d1_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
167 d1_enc.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
187 d1_lib.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
206 d1_meth.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
225 d1_pkt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
245 d1_srvr.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.h
266 kssl.o: ../include/openssl/asn1.h ../include/openssl/bio.h
284 s23_clnt.o: ../e_os.h ../include/openssl/asn1.h ../include/openssl/bio.
    [all...]
s3_pkt.c 1144 BIO *bio; local
1317 BIO *bio; local
    [all...]
  /external/openssl/apps/
s_server.c 209 static void print_stats(BIO *bp,SSL_CTX *ctx);
283 static BIO *bio_s_out=NULL;
440 BIO_printf(bio_err," -nbio_test - test with the non-blocking test bio\n");
502 static int ebcdic_new(BIO *bi);
503 static int ebcdic_free(BIO *a);
504 static int ebcdic_read(BIO *b, char *out, int outl);
505 static int ebcdic_write(BIO *b, const char *in, int inl);
506 static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr);
507 static int ebcdic_gets(BIO *bp, char *buf, int size);
508 static int ebcdic_puts(BIO *bp, const char *str)
2221 BIO *bio; local
    [all...]
enc.c 63 #include <openssl/bio.h>
84 BIO *bio=bio_; local
90 BIO_printf(bio,"-%-25s",name->name);
93 BIO_printf(bio,"\n");
97 BIO_printf(bio," ");
122 BIO *bzl = NULL;
128 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL;
457 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
512 * write to output BIO. If decrypting read salt fro
    [all...]
x509.c 67 #include <openssl/bio.h>
163 static int purpose_print(BIO *bio, X509 *cert, X509_PURPOSE *pt);
178 BIO *out=NULL;
179 BIO *STDout=NULL;
224 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
560 BIO *in;
678 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
    [all...]
gendh.c 73 #include <openssl/bio.h>
103 BIO *out=NULL;
181 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
rand.c 62 #include <openssl/bio.h>
89 BIO *out = NULL;
199 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
209 BIO *b64 = BIO_new(BIO_f_base64());
  /external/openssl/crypto/bio/
b_print.c 1 /* crypto/bio/b_print.c */
80 #include <openssl/bio.h>
768 int BIO_printf (BIO *bio, const char *format, ...)
775 ret = BIO_vprintf(bio, format, args);
781 int BIO_vprintf (BIO *bio, const char *format, va_list args)
799 ret=BIO_write(bio, dynbuf, (int)retlen);
804 ret=BIO_write(bio, hugebuf, (int)retlen);
bf_null.c 1 /* crypto/bio/bf_null.c */
62 #include <openssl/bio.h>
67 static int nullf_write(BIO *h, const char *buf, int num);
68 static int nullf_read(BIO *h, char *buf, int size);
69 static int nullf_puts(BIO *h, const char *str);
70 static int nullf_gets(BIO *h, char *str, int size);
71 static long nullf_ctrl(BIO *h, int cmd, long arg1, void *arg2);
72 static int nullf_new(BIO *h);
73 static int nullf_free(BIO *data);
74 static long nullf_callback_ctrl(BIO *h, int cmd, bio_info_cb *fp)
    [all...]
bf_nbio.c 1 /* crypto/bio/bf_nbio.c */
63 #include <openssl/bio.h>
68 static int nbiof_write(BIO *h,const char *buf,int num);
69 static int nbiof_read(BIO *h,char *buf,int size);
70 static int nbiof_puts(BIO *h,const char *str);
71 static int nbiof_gets(BIO *h,char *str,int size);
72 static long nbiof_ctrl(BIO *h,int cmd,long arg1,void *arg2);
73 static int nbiof_new(BIO *h);
74 static int nbiof_free(BIO *data);
75 static long nbiof_callback_ctrl(BIO *h,int cmd,bio_info_cb *fp)
    [all...]
bss_sock.c 1 /* crypto/bio/bss_sock.c */
66 #include <openssl/bio.h>
74 static int sock_write(BIO *h, const char *buf, int num);
75 static int sock_read(BIO *h, char *buf, int size);
76 static int sock_puts(BIO *h, const char *str);
77 static long sock_ctrl(BIO *h, int cmd, long arg1, void *arg2);
78 static int sock_new(BIO *h);
79 static int sock_free(BIO *data);
101 BIO *BIO_new_socket(int fd, int close_flag)
103 BIO *ret
    [all...]
  /external/ipsec-tools/src/racoon/
eaytest.c 51 #include <openssl/bio.h>
96 BIO *bio; local
100 bio = BIO_new_mem_buf(pubkey_txt, strlen(pubkey_txt));
101 evp = PEM_read_bio_PUBKEY(bio, NULL, NULL, NULL);
199 BIO *bio; local
206 bio = BIO_new_mem_buf(buf, strlen(buf));
207 error = PEM_read_bio(bio, &nm, &header, &data, &len);
plainrsa-gen.c 47 #include <openssl/bio.h>
  /bionic/libc/kernel/common/linux/raid/
md_k.h 15 #include "../../../drivers/md/dm-bio-list.h"
141 struct bio *biolist;
  /development/ndk/platforms/android-3/include/linux/raid/
md_k.h 15 #include "../../../drivers/md/dm-bio-list.h"
141 struct bio *biolist;
  /external/openssl/crypto/asn1/
bio_ndef.c 57 #include <openssl/bio.h>
65 /* Experimental NDEF ASN1 BIO support routines */
68 * get a BIO from it then any data written through the BIO
73 * When the BIO is flushed the output is finalized and any
76 * The BIO is a 'proper' BIO and can handle non blocking I/O
82 /* BIO support data stored in the ASN1 BIO ex_arg */
86 /* ASN1 structure this BIO refers to *
    [all...]
  /external/openssl/crypto/bn/
exptest.c 65 #include <openssl/bio.h>
77 BIO *out=NULL;
  /external/openssl/crypto/dh/
dh.h 69 #include <openssl/bio.h>
204 int DHparams_print(BIO *bp, const DH *x);

Completed in 335 milliseconds

1 2 34 5 6 7 8