Searched defs:next_bio (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dbio.c110 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
[all...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dbio.h721 /* 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
/external/openssl/crypto/bio/
H A Dbio.h326 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
/external/openssl/include/openssl/
H A Dbio.h326 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

Completed in 784 milliseconds