OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BIO_wpending
(Results
1 - 3
of
3
) sorted by null
/external/boringssl/src/crypto/bio/
bio.c
356
size_t
BIO_wpending
(const BIO *bio) {
/external/boringssl/src/include/openssl/
bio.h
244
/*
BIO_wpending
returns the number of bytes pending to be written. */
245
OPENSSL_EXPORT size_t
BIO_wpending
(const BIO *bio);
[
all
...]
/external/boringssl/src/ssl/
d1_both.c
279
size_t pending =
BIO_wpending
(SSL_get_wbio(ssl));
352
assert(
BIO_wpending
(SSL_get_wbio(ssl)) == 0);
Completed in 38 milliseconds