Searched defs:BIO (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/crypto/
H A Dopenssl_bio_string.h13 typedef struct bio_st BIO; typedef in typeref:struct:bio_st
17 // Creates a new BIO that can be used with OpenSSL's various output functions,
23 // Note: |out| must remain valid for the duration of the BIO.
24 CRYPTO_EXPORT BIO* BIO_new_string(std::string* out);
/external/chromium_org/net/socket/
H A Dssl_server_socket_openssl.h17 typedef struct bio_st BIO; typedef in typeref:struct:bio_st
128 BIO* transport_bio_;
H A Dssl_client_socket_openssl.h25 typedef struct bio_st BIO; typedef in typeref:struct:bio_st
161 long MaybeReplayTransportError(BIO *bio,
168 static long BIOCallback(BIO *bio,
260 BIO* transport_bio_;
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dbase.h167 typedef struct bio_st BIO; typedef in typeref:struct:bio_st
H A Dbio.h73 /* BIO abstracts over a file-descriptor like interface. */
78 DEFINE_STACK_OF(BIO); variable
80 /* BIO_new creates a new BIO with the given type and a reference count of one.
81 * It returns the fresh |BIO|, or NULL on error. */
82 OPENSSL_EXPORT BIO *BIO_new(const BIO_METHOD *type);
85 * drops to zero, it (optionally) calls the BIO's callback with |BIO_CB_FREE|,
86 * frees the ex_data and then, if the BIO has a destroy callback for the
88 * the next BIO in the chain, if any.
91 OPENSSL_EXPORT int BIO_free(BIO *bio);
97 OPENSSL_EXPORT void BIO_vfree(BIO *bi
[all...]
/external/openssl/crypto/bio/
H A Dbio.h98 #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 */
143 #define BIO_CTRL_DGRAM_CONNECT 31 /* BIO dgram special */
217 /* Mostly used in the SSL BIO */
231 typedef struct bio_st BIO; typedef in typeref:struct:bio_st
[all...]
/external/openssl/include/openssl/
H A Dbio.h98 #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 */
143 #define BIO_CTRL_DGRAM_CONNECT 31 /* BIO dgram special */
217 /* Mostly used in the SSL BIO */
231 typedef struct bio_st BIO; typedef in typeref:struct:bio_st
[all...]

Completed in 2176 milliseconds