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

  /external/chromium_org/third_party/boringssl/src/crypto/bio/
bio.c 110 BIO *next_bio; local
112 for (; bio != NULL; bio = next_bio) {
125 next_bio = BIO_pop(bio);
315 BIO_set_flags(bio, BIO_get_retry_flags(bio->next_bio));
316 bio->retry_reason = bio->next_bio->retry_reason;
394 while (last_bio->next_bio != NULL) {
395 last_bio = last_bio->next_bio;
398 last_bio->next_bio = appended_bio;
412 ret = bio->next_bio;
414 bio->next_bio = NULL
    [all...]
  /external/chromium_org/third_party/boringssl/src/include/openssl/
bio.h 721 /* next_bio points to the next |BIO| in a chain. This |BIO| owns a reference
722 * to |next_bio|. */
723 struct bio_st *next_bio; /* used by filter BIOs */ member in struct:bio_st
    [all...]
  /external/openssl/crypto/bio/
bio.h 326 struct bio_st *next_bio; /* used by filter BIOs */ member in struct:bio_st
539 * the next_bio field in the bio. So when you free the BIO, make sure
    [all...]
  /external/openssl/include/openssl/
bio.h 326 struct bio_st *next_bio; /* used by filter BIOs */ member in struct:bio_st
539 * the next_bio field in the bio. So when you free the BIO, make sure
    [all...]

Completed in 157 milliseconds