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

  /external/boringssl/src/ssl/test/
packeted_bio.cc 52 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 == NULL)
    [all...]
async_bio.cc 43 if (a == NULL || bio->next_bio == NULL) {
48 return BIO_write(bio->next_bio, in, inl);
62 int ret = BIO_write(bio->next_bio, in, inl);
73 if (a == NULL || bio->next_bio == NULL) {
88 int ret = BIO_read(bio->next_bio, out, outl);
98 if (bio->next_bio == NULL) {
102 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/tlsdate/src/
proxy-bio-plan9.c 114 r = BIO_write(b->next_bio, buf, sz);
121 r = BIO_read(b->next_bio, buf, 8);
161 r = BIO_write(b->next_bio, buf, 3);
165 r = BIO_read(b->next_bio, buf, 2);
194 r = BIO_write(b->next_bio, buf, sz);
211 r = BIO_read(b->next_bio, buf, 4);
224 r = BIO_read(b->next_bio, buf + 4, 1);
230 r = BIO_read(b->next_bio, buf + 5, min(len, sizeof(buf)));
237 r = BIO_read(b->next_bio, buf + 4, 6);
271 r = BIO_write(b->next_bio, buf, strlen(buf))
    [all...]
proxy-bio.c 105 r = BIO_write (b->next_bio, buf, sz);
111 r = BIO_read (b->next_bio, buf, 8);
148 r = BIO_write (b->next_bio, buf, 3);
151 r = BIO_read (b->next_bio, buf, 2);
178 r = BIO_write (b->next_bio, buf, sz);
193 r = BIO_read (b->next_bio, buf, 4);
206 r = BIO_read (b->next_bio, buf + 4, 1);
213 r = BIO_read (b->next_bio, buf + 5, min (len, sizeof (buf)));
222 r = BIO_read (b->next_bio, buf + 4, 6);
256 r = BIO_write (b->next_bio, buf, strlen (buf))
    [all...]
  /external/boringssl/src/crypto/bio/
buffer.c 147 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, cmd, num, ptr)
    [all...]
bio.c 106 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 = NULL
    [all...]
  /external/boringssl/src/crypto/asn1/
bio_asn1.c 203 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,cmd,fp)
    [all...]
  /external/boringssl/src/decrepit/bio/
base64_bio.c 128 if (ctx == NULL || b->next_bio == NULL) {
170 i = BIO_read(b->next_bio, &(ctx->tmp[ctx->tmp_len]),
177 if (!BIO_should_retry(b->next_bio)) {
339 i = BIO_write(b->next_bio, &(ctx->buf[ctx->buf_off]), n);
412 i = BIO_write(b->next_bio, &(ctx->buf[ctx->buf_off]), n);
441 ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
448 ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
458 ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
466 ret = BIO_ctrl(b->next_bio, cmd, num, ptr);
494 ret = BIO_ctrl(b->next_bio, cmd, num, ptr)
    [all...]
  /external/boringssl/src/include/openssl/
bio.h 819 BIO *next_bio; \/* used by filter BIOs *\/ member in struct:bio_st
    [all...]
  /external/boringssl/src/ssl/
ssl_lib.c 533 ssl->wbio = ssl->wbio->next_bio;
534 ssl->bbio->next_bio = NULL;
    [all...]

Completed in 122 milliseconds