HomeSort by relevance Sort by last modified time
    Searched defs:bio (Results 26 - 50 of 175) sorted by null

12 3 4 5 6 7

  /external/chromium_org/third_party/openssl/openssl/ssl/
d1_pkt.c 669 /* Only do replay check if no SCTP bio */
979 BIO *bio; local
981 bio=SSL_get_rbio(s);
983 BIO_clear_retry_flags(bio);
984 BIO_set_retry_read(bio);
1070 BIO *bio; local
1076 bio=SSL_get_rbio(s);
1077 BIO_clear_retry_flags(bio);
1303 BIO *bio; local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
openssladapter.cc 22 #include <openssl/bio.h>
67 static int socket_write(BIO* h, const char* buf, int num);
68 static int socket_read(BIO* h, char* buf, int size);
69 static int socket_puts(BIO* h, const char* str);
70 static long socket_ctrl(BIO* h, int cmd, long arg1, void* arg2);
71 static int socket_new(BIO* h);
72 static int socket_free(BIO* data);
89 static BIO* BIO_new_socket(rtc::AsyncSocket* socket) {
90 BIO* ret = BIO_new(BIO_s_socket2());
98 static int socket_new(BIO* b)
302 BIO* bio = NULL; local
    [all...]
opensslstreamadapter.cc 19 #include <openssl/bio.h>
62 static int stream_write(BIO* h, const char* buf, int num);
63 static int stream_read(BIO* h, char* buf, int size);
64 static int stream_puts(BIO* h, const char* str);
65 static long stream_ctrl(BIO* h, int cmd, long arg1, void* arg2);
66 static int stream_new(BIO* h);
67 static int stream_free(BIO* data);
84 static BIO* BIO_new_stream(StreamInterface* stream) {
85 BIO* ret = BIO_new(BIO_s_stream());
92 // bio methods return 1 (or at least non-zero) on success and 0 on failure
593 BIO* bio = NULL; local
    [all...]
  /external/openssl/crypto/
mem_dbg.c 118 #include <openssl/bio.h>
659 BIO *bio; member in struct:mem_leak_st
675 if(m->addr == (char *)l->bio)
702 BIO_puts(l->bio,buf);
739 BIO_puts(l->bio,buf);
756 void CRYPTO_mem_leaks(BIO *b)
765 ml.bio=b;
828 BIO *b;
  /external/openssl/crypto/pkcs7/
pk7_doit.c 105 static int PKCS7_bio_add_digest(BIO **pbio, X509_ALGOR *alg)
107 BIO *btmp;
263 BIO *PKCS7_dataInit(PKCS7 *p7, BIO *bio)
266 BIO *out=NULL,*btmp=NULL;
377 if (bio == NULL)
380 bio=BIO_new(BIO_s_null());
382 bio = BIO_new_mem_buf(os->data, os->length);
383 if(bio == NULL
423 BIO *out=NULL,*btmp=NULL,*etmp=NULL,*bio=NULL; local
    [all...]
  /external/openssl/ssl/
d1_pkt.c 672 /* Only do replay check if no SCTP bio */
988 BIO *bio; local
990 bio=SSL_get_rbio(s);
992 BIO_clear_retry_flags(bio);
993 BIO_set_retry_read(bio);
1080 BIO *bio; local
1086 bio=SSL_get_rbio(s);
1087 BIO_clear_retry_flags(bio);
1313 BIO *bio; local
    [all...]
  /development/ndk/platforms/android-3/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
asn_mime.c 90 static int asn1_output_data(BIO *out, BIO *data, ASN1_VALUE *val, int flags,
97 static STACK_OF(MIME_HEADER) *mime_parse_hdr(BIO *bio);
104 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret);
115 int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
118 /* If streaming create stream BIO and copy all content through it *
121 BIO *bio, *tbio; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
bss_dgram.c 1 /* crypto/bio/bio_dgram.c */
66 #include <openssl/bio.h>
100 static int dgram_write(BIO *h, const char *buf, int num);
101 static int dgram_read(BIO *h, char *buf, int size);
102 static int dgram_puts(BIO *h, const char *str);
103 static long dgram_ctrl(BIO *h, int cmd, long arg1, void *arg2);
104 static int dgram_new(BIO *h);
105 static int dgram_free(BIO *data);
106 static int dgram_clear(BIO *bio);
173 BIO *bio; member in struct:bio_dgram_sctp_save_message_st
874 BIO *bio; local
    [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);
  /external/openssl/crypto/asn1/
asn_mime.c 90 static int asn1_output_data(BIO *out, BIO *data, ASN1_VALUE *val, int flags,
97 static STACK_OF(MIME_HEADER) *mime_parse_hdr(BIO *bio);
104 static int multi_split(BIO *bio, char *bound, STACK_OF(BIO) **ret);
115 int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
118 /* If streaming create stream BIO and copy all content through it *
121 BIO *bio, *tbio; local
    [all...]
  /external/openssl/crypto/bio/
bss_dgram.c 1 /* crypto/bio/bio_dgram.c */
66 #include <openssl/bio.h>
100 static int dgram_write(BIO *h, const char *buf, int num);
101 static int dgram_read(BIO *h, char *buf, int size);
102 static int dgram_puts(BIO *h, const char *str);
103 static long dgram_ctrl(BIO *h, int cmd, long arg1, void *arg2);
104 static int dgram_new(BIO *h);
105 static int dgram_free(BIO *data);
106 static int dgram_clear(BIO *bio);
173 BIO *bio; member in struct:bio_dgram_sctp_save_message_st
874 BIO *bio; local
    [all...]
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
t2.c 48 static void opj_t2_putcommacode(opj_bio_t *bio, OPJ_INT32 n);
50 static OPJ_UINT32 opj_t2_getcommacode(opj_bio_t *bio);
53 @param bio Bit Input/Output component
56 static void opj_t2_putnumpasses(opj_bio_t *bio, OPJ_UINT32 n);
57 static OPJ_UINT32 opj_t2_getnumpasses(opj_bio_t *bio);
154 static void opj_t2_putcommacode(opj_bio_t *bio, OPJ_INT32 n) {
156 opj_bio_write(bio, 1, 1);
158 opj_bio_write(bio, 0, 1);
161 OPJ_UINT32 opj_t2_getcommacode(opj_bio_t *bio)
164 while (opj_bio_read(bio, 1))
561 opj_bio_t *bio = 00; \/* BIO component *\/ local
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/linux/
bio.h 52 struct bio;
53 typedef int (bio_end_io_t) (struct bio *, unsigned int, int);
54 typedef void (bio_destructor_t) (struct bio *);
56 struct bio { struct
58 struct bio *bi_next;
95 #define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
100 #define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
109 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT
    [all...]

Completed in 2840 milliseconds

12 3 4 5 6 7