Searched refs:next_bio (Results 1 – 5 of 5) sorted by relevance
/external/boringssl/src/ssl/test/ |
D | packeted_bio.cc | 75 if (bio->next_bio == NULL) { in PacketedWrite() 88 int ret = BIO_write(bio->next_bio, header, sizeof(header)); in PacketedWrite() 95 ret = BIO_write(bio->next_bio, in, inl); in PacketedWrite() 106 if (bio->next_bio == NULL) { in PacketedRead() 114 int ret = ReadAll(bio->next_bio, &opcode, sizeof(opcode)); in PacketedRead() 129 ret = ReadAll(bio->next_bio, buf, sizeof(buf)); in PacketedRead() 148 ret = BIO_write(bio->next_bio, &kOpcodeTimeoutAck, 1); in PacketedRead() 166 ret = ReadAll(bio->next_bio, len_bytes, sizeof(len_bytes)); in PacketedRead() 178 ret = ReadAll(bio->next_bio, buf, len); in PacketedRead() 193 if (bio->next_bio == NULL) { in PacketedCtrl() [all …]
|
D | async_bio.cc | 46 if (a == NULL || bio->next_bio == NULL) { in AsyncWrite() 51 return BIO_write(bio->next_bio, in, inl); in AsyncWrite() 65 int ret = BIO_write(bio->next_bio, in, inl); in AsyncWrite() 76 if (a == NULL || bio->next_bio == NULL) { in AsyncRead() 91 int ret = BIO_read(bio->next_bio, out, outl); in AsyncRead() 101 if (bio->next_bio == NULL) { in AsyncCtrl() 105 int ret = BIO_ctrl(bio->next_bio, cmd, num, ptr); in AsyncCtrl() 135 if (bio->next_bio == NULL) { in AsyncCallbackCtrl() 138 return BIO_callback_ctrl(bio->next_bio, cmd, fp); in AsyncCallbackCtrl()
|
/external/boringssl/src/decrepit/bio/ |
D | base64_bio.c | 130 if (ctx == NULL || b->next_bio == NULL) { in b64_read() 172 i = BIO_read(b->next_bio, &(ctx->tmp[ctx->tmp_len]), in b64_read() 179 if (!BIO_should_retry(b->next_bio)) { in b64_read() 341 i = BIO_write(b->next_bio, &(ctx->buf[ctx->buf_off]), n); in b64_write() 414 i = BIO_write(b->next_bio, &(ctx->buf[ctx->buf_off]), n); in b64_write() 443 ret = BIO_ctrl(b->next_bio, cmd, num, ptr); in b64_ctrl() 450 ret = BIO_ctrl(b->next_bio, cmd, num, ptr); in b64_ctrl() 460 ret = BIO_ctrl(b->next_bio, cmd, num, ptr); in b64_ctrl() 468 ret = BIO_ctrl(b->next_bio, cmd, num, ptr); in b64_ctrl() 496 ret = BIO_ctrl(b->next_bio, cmd, num, ptr); in b64_ctrl() [all …]
|
/external/boringssl/src/crypto/bio/ |
D | bio.c | 92 BIO *next_bio; in BIO_free() local 94 for (; bio != NULL; bio = next_bio) { in BIO_free() 106 next_bio = BIO_pop(bio); in BIO_free() 303 BIO_set_flags(bio, BIO_get_retry_flags(bio->next_bio)); in BIO_copy_next_retry() 304 bio->retry_reason = bio->next_bio->retry_reason; in BIO_copy_next_retry() 394 while (last_bio->next_bio != NULL) { in BIO_push() 395 last_bio = last_bio->next_bio; in BIO_push() 398 last_bio->next_bio = appended_bio; in BIO_push() 408 ret = bio->next_bio; in BIO_pop() 409 bio->next_bio = NULL; in BIO_pop() [all …]
|
/external/boringssl/src/include/openssl/ |
D | bio.h | 735 BIO *next_bio; /* used by filter BIOs */ member
|