HomeSort by relevance Sort by last modified time
    Searched refs:BIO_test_flags (Results 1 - 3 of 3) sorted by null

  /external/openssl/crypto/bio/
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)
bio_lib.c 149 int BIO_test_flags(const BIO *b, int flags)
  /external/openssl/include/openssl/
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)

Completed in 158 milliseconds