Searched refs:obuf_len (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/crypto/openssl/crypto/bio/
H A Dbf_lbuf.c100 int obuf_len; /* how many bytes are in it */ member in struct:bio_linebuffer_ctx_struct
116 ctx->obuf_len = 0;
181 while ((foundnl || p - in > ctx->obuf_size - ctx->obuf_len)
182 && ctx->obuf_len > 0) {
183 int orig_olen = ctx->obuf_len;
185 i = ctx->obuf_size - ctx->obuf_len;
188 memcpy(&(ctx->obuf[ctx->obuf_len]), in, p - in);
189 ctx->obuf_len += p - in;
194 memcpy(&(ctx->obuf[ctx->obuf_len]), in, i);
195 ctx->obuf_len
[all...]
H A Dbf_buff.c114 ctx->obuf_len = 0;
225 i = ctx->obuf_size - (ctx->obuf_len + ctx->obuf_off);
228 memcpy(&(ctx->obuf[ctx->obuf_off + ctx->obuf_len]), in, inl);
229 ctx->obuf_len += inl;
234 if (ctx->obuf_len != 0) {
236 memcpy(&(ctx->obuf[ctx->obuf_off + ctx->obuf_len]), in, i);
240 ctx->obuf_len += i;
245 ctx->obuf_len);
255 ctx->obuf_len -= i;
256 if (ctx->obuf_len
[all...]
H A Dbio.h365 int obuf_len; /* how many bytes are in it */ member in struct:bio_f_buffer_ctx_struct

Completed in 176 milliseconds