Searched refs:BIO_test_flags (Results 1 – 3 of 3) sorted by relevance
/external/openssl/crypto/bio/ |
D | bio.h | 207 int BIO_test_flags(const BIO *b, int flags); 210 #define BIO_get_flags(b) BIO_test_flags(b, ~(0x0)) 222 BIO_test_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY)) 225 #define BIO_should_read(a) BIO_test_flags(a, BIO_FLAGS_READ) 226 #define BIO_should_write(a) BIO_test_flags(a, BIO_FLAGS_WRITE) 227 #define BIO_should_io_special(a) BIO_test_flags(a, BIO_FLAGS_IO_SPECIAL) 228 #define BIO_retry_type(a) BIO_test_flags(a, BIO_FLAGS_RWS) 229 #define BIO_should_retry(a) BIO_test_flags(a, BIO_FLAGS_SHOULD_RETRY)
|
D | bio_lib.c | 149 int BIO_test_flags(const BIO *b, int flags) in BIO_test_flags() function
|
/external/openssl/include/openssl/ |
D | bio.h | 207 int BIO_test_flags(const BIO *b, int flags); 210 #define BIO_get_flags(b) BIO_test_flags(b, ~(0x0)) 222 BIO_test_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY)) 225 #define BIO_should_read(a) BIO_test_flags(a, BIO_FLAGS_READ) 226 #define BIO_should_write(a) BIO_test_flags(a, BIO_FLAGS_WRITE) 227 #define BIO_should_io_special(a) BIO_test_flags(a, BIO_FLAGS_IO_SPECIAL) 228 #define BIO_retry_type(a) BIO_test_flags(a, BIO_FLAGS_RWS) 229 #define BIO_should_retry(a) BIO_test_flags(a, BIO_FLAGS_SHOULD_RETRY)
|