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 234 int BIO_test_flags(const BIO *b, int flags);
237 #define BIO_get_flags(b) BIO_test_flags(b, ~(0x0))
249 BIO_test_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY))
252 #define BIO_should_read(a) BIO_test_flags(a, BIO_FLAGS_READ)
253 #define BIO_should_write(a) BIO_test_flags(a, BIO_FLAGS_WRITE)
254 #define BIO_should_io_special(a) BIO_test_flags(a, BIO_FLAGS_IO_SPECIAL)
255 #define BIO_retry_type(a) BIO_test_flags(a, BIO_FLAGS_RWS)
256 #define BIO_should_retry(a) BIO_test_flags(a, BIO_FLAGS_SHOULD_RETRY)
    [all...]
bio_lib.c 149 int BIO_test_flags(const BIO *b, int flags)
  /external/openssl/include/openssl/
bio.h 234 int BIO_test_flags(const BIO *b, int flags);
237 #define BIO_get_flags(b) BIO_test_flags(b, ~(0x0))
249 BIO_test_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY))
252 #define BIO_should_read(a) BIO_test_flags(a, BIO_FLAGS_READ)
253 #define BIO_should_write(a) BIO_test_flags(a, BIO_FLAGS_WRITE)
254 #define BIO_should_io_special(a) BIO_test_flags(a, BIO_FLAGS_IO_SPECIAL)
255 #define BIO_retry_type(a) BIO_test_flags(a, BIO_FLAGS_RWS)
256 #define BIO_should_retry(a) BIO_test_flags(a, BIO_FLAGS_SHOULD_RETRY)
    [all...]

Completed in 71 milliseconds