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

  /external/chromium_org/third_party/boringssl/src/include/openssl/
bio.h 224 * with |BIO_CB_RETURN| if the callback is being made after the operation in
621 * The BIO_CB_RETURN flag indicates if it is after the call */
622 #define BIO_CB_RETURN 0x80
    [all...]
  /external/openssl/crypto/bio/
bio.h 282 * The BIO_CB_RETURN flag indicates if it is after the call */
283 #define BIO_CB_RETURN 0x80
284 #define BIO_CB_return(a) ((a)|BIO_CB_RETURN))
285 #define BIO_cb_pre(a) (!((a)&BIO_CB_RETURN))
286 #define BIO_cb_post(a) ((a)&BIO_CB_RETURN)
    [all...]
  /external/openssl/include/openssl/
bio.h 282 * The BIO_CB_RETURN flag indicates if it is after the call */
283 #define BIO_CB_RETURN 0x80
284 #define BIO_CB_return(a) ((a)|BIO_CB_RETURN))
285 #define BIO_cb_pre(a) (!((a)&BIO_CB_RETURN))
286 #define BIO_cb_post(a) ((a)&BIO_CB_RETURN)
    [all...]

Completed in 273 milliseconds