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

1 2 3 45 6 7

  /external/chromium_org/third_party/openssl/openssl/apps/
apps.c 169 load_netscape_key(BIO *err, BIO *key, const char *file,
459 int dump_cert_text (BIO *out, X509 *x)
630 static char *app_get_pass(BIO *err, char *arg, int keepbio);
632 int app_passwd(BIO *err, char *arg1, char *arg2, char **pass1, char **pass2)
648 static char *app_get_pass(BIO *err, char *arg, int keepbio)
651 static BIO *pwdbio = NULL;
679 BIO *btmp;
686 /* Can't do BIO_gets on an fd BIO so add a buffering BIO */
1120 BIO *bio; local
    [all...]
s_server.c 212 static void print_stats(BIO *bp,SSL_CTX *ctx);
286 static BIO *bio_s_out=NULL;
493 BIO_printf(bio_err," -nbio_test - test with the non-blocking test bio\n");
571 static int ebcdic_new(BIO *bi);
572 static int ebcdic_free(BIO *a);
573 static int ebcdic_read(BIO *b, char *out, int outl);
574 static int ebcdic_write(BIO *b, const char *in, int inl);
575 static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr);
576 static int ebcdic_gets(BIO *bp, char *buf, int size);
577 static int ebcdic_puts(BIO *bp, const char *str)
2522 BIO *bio; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
ssl_lib.c 533 /* If the buffering BIO is in place, pop it off */
611 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio)
613 /* If the output buffering BIO is still in place, remove it
631 BIO *SSL_get_rbio(const SSL *s)
634 BIO *SSL_get_wbio(const SSL *s)
645 BIO *b,*r;
657 BIO *b,*r;
670 BIO *bio=NULL local
689 BIO *bio=NULL; local
711 BIO *bio=NULL; local
2529 BIO *bio; local
    [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...]
ipsec_doi.c 4008 BIO *bio; local
4554 BIO *bio = BIO_new(BIO_s_mem()); local
    [all...]
  /external/openssl/apps/
apps.c 169 load_netscape_key(BIO *err, BIO *key, const char *file,
459 int dump_cert_text (BIO *out, X509 *x)
630 static char *app_get_pass(BIO *err, char *arg, int keepbio);
632 int app_passwd(BIO *err, char *arg1, char *arg2, char **pass1, char **pass2)
648 static char *app_get_pass(BIO *err, char *arg, int keepbio)
651 static BIO *pwdbio = NULL;
679 BIO *btmp;
686 /* Can't do BIO_gets on an fd BIO so add a buffering BIO */
1120 BIO *bio; local
    [all...]
s_server.c 212 static void print_stats(BIO *bp,SSL_CTX *ctx);
286 static BIO *bio_s_out=NULL;
493 BIO_printf(bio_err," -nbio_test - test with the non-blocking test bio\n");
571 static int ebcdic_new(BIO *bi);
572 static int ebcdic_free(BIO *a);
573 static int ebcdic_read(BIO *b, char *out, int outl);
574 static int ebcdic_write(BIO *b, const char *in, int inl);
575 static long ebcdic_ctrl(BIO *b, int cmd, long num, void *ptr);
576 static int ebcdic_gets(BIO *bp, char *buf, int size);
577 static int ebcdic_puts(BIO *bp, const char *str)
2522 BIO *bio; local
    [all...]
  /external/openssl/ssl/
ssl_lib.c 551 /* If the buffering BIO is in place, pop it off */
636 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio)
638 /* If the output buffering BIO is still in place, remove it
656 BIO *SSL_get_rbio(const SSL *s)
659 BIO *SSL_get_wbio(const SSL *s)
670 BIO *b,*r;
682 BIO *b,*r;
695 BIO *bio=NULL local
714 BIO *bio=NULL; local
736 BIO *bio=NULL; local
2643 BIO *bio; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c 62 static BIO * BIO_from_keystore(const char *key)
64 BIO *bio = NULL; local
67 if (length != -1 && (bio = BIO_new(BIO_s_mem())) != NULL)
68 BIO_write(bio, value, length);
70 return bio;
90 BIO *ssl_in, *ssl_out;
1044 "Failed to create a new BIO for ssl_in");
1053 "Failed to create a new BIO for ssl_out");
1640 BIO *bio = BIO_from_keystore(&ca_cert[11]); local
1849 BIO *bio = BIO_from_keystore(&client_cert[11]); local
    [all...]
  /development/ndk/platforms/android-3/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]
  /prebuilts/ndk/7/platforms/android-4/arch-x86/usr/include/linux/
blkdev.h 24 #include <linux/bio.h>
135 struct bio *bio; member in struct:request
136 struct bio *biotail;
250 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 *);
436 #define rq_for_each_bio(_bio, rq) if ((rq->bio)) for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next
    [all...]

Completed in 1518 milliseconds

1 2 3 45 6 7