OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BIO_test_flags
(Results
1 - 3
of
3
) sorted by null
/external/boringssl/src/crypto/bio/
bio.c
264
int
BIO_test_flags
(const BIO *bio, int flags) {
269
return
BIO_test_flags
(bio, BIO_FLAGS_READ);
273
return
BIO_test_flags
(bio, BIO_FLAGS_WRITE);
277
return
BIO_test_flags
(bio, BIO_FLAGS_SHOULD_RETRY);
281
return
BIO_test_flags
(bio, BIO_FLAGS_IO_SPECIAL);
/external/boringssl/src/decrepit/bio/
base64_bio.c
196
if (ctx->start && (
BIO_test_flags
(b, BIO_FLAGS_BASE64_NO_NL))) {
262
if (
BIO_test_flags
(b, BIO_FLAGS_BASE64_NO_NL)) {
362
if (
BIO_test_flags
(b, BIO_FLAGS_BASE64_NO_NL)) {
479
if (
BIO_test_flags
(b, BIO_FLAGS_BASE64_NO_NL)) {
/external/boringssl/src/include/openssl/
bio.h
157
/*
BIO_test_flags
returns |bio->flags| AND |flags|. */
158
OPENSSL_EXPORT int
BIO_test_flags
(const BIO *bio, int flags);
[
all
...]
Completed in 34 milliseconds