HomeSort by relevance Sort by last modified time
    Searched refs:bio (Results 176 - 200 of 535) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/kernel-headers/original/linux/
loop.h 17 #include <linux/bio.h>
59 struct bio *lo_bio;
60 struct bio *lo_biotail;
  /external/openssl/apps/
s_client.c 213 static void print_stuff(BIO *berr,SSL *con,int full);
217 static BIO *bio_c_out=NULL;
378 BIO * biodebug;
593 BIO *sbio;
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
bio_lcl.h 1 #include <openssl/bio.h>
bss_conn.c 1 /* crypto/bio/bss_conn.c */
63 #include <openssl/bio.h>
92 /* int socket; this will be kept in bio->num so that it is
93 * compatible with the bss_sock bio */
96 * callback(BIO,state,ret); The callback should return
98 int (*info_callback)(const BIO *bio,int state,int ret);
101 static int conn_write(BIO *h, const char *buf, int num);
102 static int conn_read(BIO *h, char *buf, int size);
103 static int conn_puts(BIO *h, const char *str)
    [all...]
bio.h 1 /* crypto/bio/bio.h */
98 #define BIO_TYPE_PROXY_CLIENT (14|0x0200) /* client proxy BIO */
99 #define BIO_TYPE_PROXY_SERVER (15|0x0200) /* server proxy BIO */
100 #define BIO_TYPE_NBIO_TEST (16|0x0200) /* server proxy BIO */
103 #define BIO_TYPE_BIO (19|0x0400) /* (half a) BIO pair */
134 #define BIO_CTRL_DUP 12 /* man - extra stuff for 'duped' BIO */
136 /* callback is int cb(BIO *bio,state,ret); */
142 /* dgram BIO stuff *
    [all...]
bss_null.c 1 /* crypto/bio/bss_null.c */
62 #include <openssl/bio.h>
64 static int null_write(BIO *h, const char *buf, int num);
65 static int null_read(BIO *h, char *buf, int size);
66 static int null_puts(BIO *h, const char *str);
67 static int null_gets(BIO *h, char *str, int size);
68 static long null_ctrl(BIO *h, int cmd, long arg1, void *arg2);
69 static int null_new(BIO *h);
70 static int null_free(BIO *data);
90 static int null_new(BIO *bi
    [all...]
  /external/openssl/crypto/bio/
bio_lcl.h 1 #include <openssl/bio.h>
bss_conn.c 1 /* crypto/bio/bss_conn.c */
63 #include <openssl/bio.h>
92 /* int socket; this will be kept in bio->num so that it is
93 * compatible with the bss_sock bio */
96 * callback(BIO,state,ret); The callback should return
98 int (*info_callback)(const BIO *bio,int state,int ret);
101 static int conn_write(BIO *h, const char *buf, int num);
102 static int conn_read(BIO *h, char *buf, int size);
103 static int conn_puts(BIO *h, const char *str)
    [all...]
bio.h 1 /* crypto/bio/bio.h */
98 #define BIO_TYPE_PROXY_CLIENT (14|0x0200) /* client proxy BIO */
99 #define BIO_TYPE_PROXY_SERVER (15|0x0200) /* server proxy BIO */
100 #define BIO_TYPE_NBIO_TEST (16|0x0200) /* server proxy BIO */
103 #define BIO_TYPE_BIO (19|0x0400) /* (half a) BIO pair */
134 #define BIO_CTRL_DUP 12 /* man - extra stuff for 'duped' BIO */
136 /* callback is int cb(BIO *bio,state,ret); */
142 /* dgram BIO stuff *
    [all...]
  /external/kernel-headers/original/linux/raid/
md.h 43 #include <linux/bio.h>
81 extern void md_write_start(mddev_t *mddev, struct bio *bi);
  /external/chromium_org/net/socket/
ssl_client_socket_openssl_unittest.cc 10 #include <openssl/bio.h>
52 void BIO_free_func(BIO* bio) {
53 BIO_free(bio);
56 typedef crypto::ScopedOpenSSL<BIO, BIO_free_func> ScopedBIO;
75 ScopedBIO bio(
79 if (!bio.get()) {
80 LOG(ERROR) << "Could not allocate BIO for buffer?";
83 EVP_PKEY* result = PEM_read_bio_PrivateKey(bio.get(), NULL, NULL, NULL);
  /external/chromium_org/third_party/openssl/openssl/apps/
s_client.c 213 static void print_stuff(BIO *berr,SSL *con,int full);
217 static BIO *bio_c_out=NULL;
377 BIO * biodebug;
592 BIO *sbio;
    [all...]
app_rand.c 115 #include <openssl/bio.h>
122 int app_RAND_load_file(const char *file, BIO *bio_e, int dont_warn)
194 int app_RAND_write_file(const char *file, BIO *bio_e)
errstr.c 63 #include <openssl/bio.h>
89 BIO *out=NULL;
96 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
  /bionic/libc/kernel/common/linux/
blkdev.h 32 #include <linux/bio.h>
131 struct bio *bio; member in struct:request
132 struct bio *biotail;
249 struct bio *);
254 typedef int (make_request_fn) (request_queue_t *q, struct bio *bio);
259 typedef int (merge_bvec_fn) (request_queue_t *, struct bio *, struct bio_vec *);
429 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /external/chromium_org/crypto/
signature_verifier_openssl.cc 138 ScopedOpenSSL<BIO, BIO_free_all> bio(BIO_new_mem_buf(data,
140 if (!bio.get())
144 d2i_PUBKEY_bio(bio.get(), NULL));
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
bio.h 1 /* crypto/bio/bio.h */
98 #define BIO_TYPE_PROXY_CLIENT (14|0x0200) /* client proxy BIO */
99 #define BIO_TYPE_PROXY_SERVER (15|0x0200) /* server proxy BIO */
100 #define BIO_TYPE_NBIO_TEST (16|0x0200) /* server proxy BIO */
103 #define BIO_TYPE_BIO (19|0x0400) /* (half a) BIO pair */
134 #define BIO_CTRL_DUP 12 /* man - extra stuff for 'duped' BIO */
136 /* callback is int cb(BIO *bio,state,ret); */
142 /* dgram BIO stuff *
    [all...]
  /external/openssl/include/openssl/
bio.h 1 /* crypto/bio/bio.h */
98 #define BIO_TYPE_PROXY_CLIENT (14|0x0200) /* client proxy BIO */
99 #define BIO_TYPE_PROXY_SERVER (15|0x0200) /* server proxy BIO */
100 #define BIO_TYPE_NBIO_TEST (16|0x0200) /* server proxy BIO */
103 #define BIO_TYPE_BIO (19|0x0400) /* (half a) BIO pair */
134 #define BIO_CTRL_DUP 12 /* man - extra stuff for 'duped' BIO */
136 /* callback is int cb(BIO *bio,state,ret); */
142 /* dgram BIO stuff *
    [all...]
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 440 static BIO *BIO_from_android(char *path)
478 BIO *bio = BIO_from_android(CAfile); local
483 if (!bio) {
486 stack = PEM_X509_INFO_read_bio(bio, NULL, NULL, NULL);
487 BIO_free(bio);
797 BIO *bio = NULL; local
807 bio = BIO_new(BIO_s_mem());
808 if (bio == NULL
859 BIO *bio; local
897 BIO *bio = BIO_from_android(path); local
1007 BIO *bio = BIO_from_android(path); local
2577 BIO *bio=NULL, *b64=NULL; local
2614 BIO *bio=NULL, *b64=NULL; local
    [all...]
  /bionic/libc/kernel/common/linux/raid/
md.h 49 #include <linux/bio.h>
  /development/ndk/platforms/android-3/include/linux/raid/
md.h 37 #include <linux/bio.h>
  /external/chromium/net/test/
openssl_helper.cc 10 #include <openssl/bio.h>
129 BIO* key = BIO_new(BIO_s_file());
143 BIO* cert = BIO_new(BIO_s_file());
196 BIO* bio = BIO_new_socket(fd, 1 /* take ownership of fd */); local
197 SSL_set_bio(server, bio, bio);
  /external/chromium_org/net/test/
openssl_helper.cc 10 #include <openssl/bio.h>
129 BIO* key = BIO_new(BIO_s_file());
143 BIO* cert = BIO_new(BIO_s_file());
196 BIO* bio = BIO_new_socket(fd, 1 /* take ownership of fd */); local
197 SSL_set_bio(server, bio, bio);
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
ecb_enc.c 62 #include <openssl/bio.h>
  /external/chromium_org/third_party/openssl/openssl/crypto/txt_db/
txt_db.h 64 #include <openssl/bio.h>
96 TXT_DB *TXT_DB_read(BIO *in, int num);
97 long TXT_DB_write(BIO *out, TXT_DB *db);

Completed in 622 milliseconds

1 2 3 4 5 6 78 91011>>