Searched refs:next_bio (Results 1 - 8 of 8) sorted by relevance

/external/boringssl/src/ssl/test/
H A Dpacketed_bio.cc52 if (bio->next_bio == NULL) {
65 int ret = BIO_write(bio->next_bio, header, sizeof(header));
72 ret = BIO_write(bio->next_bio, in, inl);
82 if (bio->next_bio == NULL) {
90 int ret = ReadAll(bio->next_bio, &opcode, sizeof(opcode));
99 ret = ReadAll(bio->next_bio, buf, sizeof(buf));
120 ret = BIO_write(bio->next_bio, &kOpcodeTimeoutAck, 1);
139 ret = ReadAll(bio->next_bio, len_bytes, sizeof(len_bytes));
151 ret = ReadAll(bio->next_bio, buf, len);
166 if (bio->next_bio
[all...]
H A Dasync_bio.cc42 if (a == NULL || bio->next_bio == NULL) {
49 return BIO_write(bio->next_bio, in, inl);
63 int ret = BIO_write(bio->next_bio, in, inl);
74 if (a == NULL || bio->next_bio == NULL) {
89 int ret = BIO_read(bio->next_bio, out, outl);
99 if (bio->next_bio == NULL) {
103 int ret = BIO_ctrl(bio->next_bio, cmd, num, ptr);
132 if (bio->next_bio == NULL) {
135 return BIO_callback_ctrl(bio->next_bio, cmd, fp);
/external/boringssl/src/crypto/bio/
H A Dbuffer.c147 if (ctx == NULL || bio->next_bio == NULL) {
178 i = BIO_read(bio->next_bio, out, outl);
197 i = BIO_read(bio->next_bio, ctx->ibuf, ctx->ibuf_size);
215 if (ctx == NULL || b->next_bio == NULL) {
242 i = BIO_write(b->next_bio, &ctx->obuf[ctx->obuf_off], ctx->obuf_len);
265 i = BIO_write(b->next_bio, in, inl);
301 if (b->next_bio == NULL) {
304 ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
314 if (b->next_bio == NULL) {
317 ret = BIO_ctrl(b->next_bio, cm
[all...]
H A Dbio.c106 BIO *next_bio; local
108 for (; bio != NULL; bio = next_bio) {
120 next_bio = BIO_pop(bio);
313 BIO_set_flags(bio, BIO_get_retry_flags(bio->next_bio));
314 bio->retry_reason = bio->next_bio->retry_reason;
392 while (last_bio->next_bio != NULL) {
393 last_bio = last_bio->next_bio;
396 last_bio->next_bio = appended_bio;
406 ret = bio->next_bio;
407 bio->next_bio
[all...]
/external/boringssl/src/crypto/asn1/
H A Dbio_asn1.c203 if (!in || (inl < 0) || (b->next_bio == NULL))
248 ret = BIO_write(b->next_bio,
270 ret = BIO_write(b->next_bio, in, wrmax);
310 ret = BIO_write(b->next_bio, ctx->ex_buf + ctx->ex_pos,
349 if (!b->next_bio)
351 return BIO_read(b->next_bio, in , inl);
361 if (!b->next_bio)
363 return BIO_gets(b->next_bio, str , size);
368 if (b->next_bio == NULL) return(0);
369 return BIO_callback_ctrl(b->next_bio,cm
[all...]
/external/boringssl/include/openssl/
H A Dbio.h805 /* next_bio points to the next |BIO| in a chain. This |BIO| owns a reference
806 * to |next_bio|. */
807 struct bio_st *next_bio; /* used by filter BIOs */ member in struct:bio_st
/external/boringssl/src/include/openssl/
H A Dbio.h805 /* next_bio points to the next |BIO| in a chain. This |BIO| owns a reference
806 * to |next_bio|. */
807 struct bio_st *next_bio; /* used by filter BIOs */ member in struct:bio_st
/external/boringssl/src/ssl/
H A Dssl_lib.c580 s->wbio = s->wbio->next_bio;
581 s->bbio->next_bio = NULL;

Completed in 219 milliseconds