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

1 2 3 4 5 6 78 91011>>

  /external/openssl/
Crypto-config.mk 123 crypto/bio/b_dump.c \
124 crypto/bio/b_print.c \
125 crypto/bio/b_sock.c \
126 crypto/bio/bf_buff.c \
127 crypto/bio/bf_nbio.c \
128 crypto/bio/bf_null.c \
129 crypto/bio/bio_cb.c \
130 crypto/bio/bio_err.c \
131 crypto/bio/bio_lib.c \
132 crypto/bio/bss_acpt.c
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
openssladapter.cc 7 #include <openssl/bio.h>
51 static int socket_write(BIO* h, const char* buf, int num);
52 static int socket_read(BIO* h, char* buf, int size);
53 static int socket_puts(BIO* h, const char* str);
54 static long socket_ctrl(BIO* h, int cmd, long arg1, void* arg2);
55 static int socket_new(BIO* h);
56 static int socket_free(BIO* data);
73 BIO* BIO_new_socket(talk_base::AsyncSocket* socket) {
74 BIO* ret = BIO_new(BIO_s_socket2());
82 static int socket_new(BIO* b)
279 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/wpa_supplicant_8/src/crypto/
tls_openssl.c 51 static BIO * BIO_from_keystore(const char *key)
53 BIO *bio = NULL; local
56 if (length != -1 && (bio = BIO_new(BIO_s_mem())) != NULL) {
57 BIO_write(bio, value, length);
60 return bio;
78 BIO *ssl_in, *ssl_out;
967 "Failed to create a new BIO for ssl_in");
976 "Failed to create a new BIO for ssl_out");
1440 BIO *bio = BIO_from_keystore(&ca_cert[11]); local
1640 BIO *bio = BIO_from_keystore(&client_cert[11]); local
2041 BIO *bio = BIO_from_keystore(&private_key[11]); local
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp 88 void operator()(BIO* p) const {
92 typedef UniquePtr<BIO, BIO_Delete> Unique_BIO;
822 * BIO for InputStream
898 JNI_TRACE("BIO::gets \"%s\"", buf);
969 static int bio_stream_create(BIO *b) {
977 static int bio_stream_destroy(BIO *b) {
992 static int bio_stream_read(BIO *b, char *buf, int len) {
997 static int bio_stream_write(BIO *b, const char *buf, int len) {
1002 static int bio_stream_puts(BIO *b, const char *buf) {
1007 static int bio_stream_gets(BIO *b, char *buf, int len)
3731 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); local
3762 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); local
3802 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); local
4304 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); local
4466 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); local
4658 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); local
4703 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); local
4783 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); local
4812 BIO* bio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(bioRef)); local
7165 BIO* bio = SSL_get_rbio(ssl); local
7365 BIO* bio = SSL_get_wbio(ssl); local
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-subst-std.cpp 101 std::basic_iostream<char> bio(17);
  /external/openssl/apps/
s_apps.h 164 long MS_CALLBACK bio_dump_callback(BIO *bio, int cmd, const char *argp,
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," ");
119 BIO *bzl = NULL;
125 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL;
461 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
516 * write to output BIO. If decrypting read salt fro
    [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/crypto/bio/
bio_err.c 1 /* crypto/bio/bio_err.c */
63 #include <openssl/bio.h>
116 {ERR_REASON(BIO_R_EOF_ON_MEMORY_BIO) ,"EOF on memory BIO"},
138 {ERR_REASON(BIO_R_WRITE_TO_READ_ONLY_BIO),"write to read only 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...]
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/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>
  /system/core/adb/
adb_auth_host.c 135 BIO *bio, *b64, *bfile; local
160 bio = BIO_push(b64, bfile);
161 BIO_write(bio, &pkey, sizeof(pkey));
162 BIO_flush(bio);
  /bionic/libc/kernel/common/linux/raid/
md_k.h 21 #include "../../../drivers/md/dm-bio-list.h"
141 struct bio *biolist;
174 int (*make_request)(request_queue_t *q, struct bio *bio);
  /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/openssh/
authfile.c 181 BIO *bio; local
187 if ((bio = BIO_new(BIO_s_mem())) == NULL) {
193 success = PEM_write_bio_DSAPrivateKey(bio, key->dsa,
198 success = PEM_write_bio_ECPrivateKey(bio, key->ecdsa,
203 success = PEM_write_bio_RSAPrivateKey(bio, key->rsa,
208 if ((blen = BIO_get_mem_data(bio, &bptr)) <= 0)
213 BIO_free(bio);
525 BIO *bio; local
    [all...]
  /external/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
2499 BIO *bio; local
    [all...]
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...]
s3_pkt.c 1164 BIO *bio; local
1342 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);

Completed in 1589 milliseconds

1 2 3 4 5 6 78 91011>>