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

  /external/openssl/crypto/bio/
bf_lbuf.c 102 int obuf_len; /* how many bytes are in it */ member in struct:bio_linebuffer_ctx_struct
114 ctx->obuf_len=0;
175 while ((foundnl || p - in > ctx->obuf_size - ctx->obuf_len)
176 && ctx->obuf_len > 0)
178 int orig_olen = ctx->obuf_len;
180 i = ctx->obuf_size - ctx->obuf_len;
185 memcpy(&(ctx->obuf[ctx->obuf_len]),
187 ctx->obuf_len += p - in;
194 memcpy(&(ctx->obuf[ctx->obuf_len]),
196 ctx->obuf_len += i
    [all...]
bio.h 357 int obuf_len; /* how many bytes are in it */ member in struct:bio_f_buffer_ctx_struct
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bio/
buffer.c 84 int obuf_len; /* how many bytes are in it */ member in struct:bio_f_buffer_ctx_struct
224 i = ctx->obuf_size - (ctx->obuf_off + ctx->obuf_len);
227 memcpy(&ctx->obuf[ctx->obuf_off + ctx->obuf_len], in, inl);
228 ctx->obuf_len += inl;
233 if (ctx->obuf_len != 0) {
235 memcpy(&ctx->obuf[ctx->obuf_off + ctx->obuf_len], in, i);
239 ctx->obuf_len += i;
244 i = BIO_write(b->next_bio, &ctx->obuf[ctx->obuf_off], ctx->obuf_len);
254 ctx->obuf_len -= i;
255 if (ctx->obuf_len == 0)
    [all...]
  /external/openssl/include/openssl/
bio.h 357 int obuf_len; /* how many bytes are in it */ member in struct:bio_f_buffer_ctx_struct
    [all...]

Completed in 80 milliseconds