Lines Matching defs:bytes
87 * AP_IOBUFSIZE (8192 bytes) per call.
206 /* when handshaking we'll have a small number of bytes.
208 * (16413 bytes to be exact)
327 /* Copy up to INL bytes from the char_buffer BUFFER into IN. Note
364 * proceeds. It will read at most *len bytes.
596 apr_size_t bytes = 0;
602 if ((bytes = char_buffer_read(&inctx->cbuf, buf, wanted))) {
603 *len = bytes;
607 inctx->cbuf.value -= bytes;
608 inctx->cbuf.length += bytes;
610 char_buffer_write(&inctx->cbuf, buf, (int)bytes);
646 rc = SSL_read(inctx->filter_ctx->pssl, buf + bytes, wanted - bytes);
787 apr_size_t bytes = pos - buf;
789 bytes += 1;
790 value = buf + bytes;
791 length = *len - bytes;
795 *len = bytes;
874 " of %" APR_SIZE_T_FMT " bytes (%s)",
1568 apr_size_t bytes; /* number of bytes of buffer used. */
1575 apr_size_t bytes = 0;
1597 && (bytes + e->length) < COALESCE_BYTES
1599 || bytes + ctx->bytes + e->length < COALESCE_BYTES);
1603 bytes += e->length;
1611 if (bytes > 0
1614 /* If coalescing some bytes, ensure a context has been
1618 ctx->bytes = 0;
1622 "coalesce: have %" APR_SIZE_T_FMT " bytes, "
1623 "adding %" APR_SIZE_T_FMT " more", ctx->bytes, bytes);
1657 || (len + ctx->bytes > sizeof ctx->buffer)) {
1663 memcpy(ctx->buffer + ctx->bytes, data, len);
1664 ctx->bytes += len;
1681 if (ctx && ctx->bytes) {
1685 "coalesce: passing on %" APR_SIZE_T_FMT " bytes", ctx->bytes);
1687 e = apr_bucket_transient_create(ctx->buffer, ctx->bytes, bb->bucket_alloc);
1689 ctx->bytes = 0; /* buffer now emptied. */
1825 "%" APR_SIZE_T_FMT " bytes", maxlen);
1877 "total of %" APR_OFF_T_FMT " bytes in buffer, eos=%d",
1915 apr_off_t bytes)
1922 "%" APR_OFF_T_FMT " bytes",
1923 mode, bytes);
1946 rv = apr_brigade_partition(ctx->bb, bytes, &e);
1975 rv = apr_brigade_split_line(bb, ctx->bb, block, bytes);
2188 "%s: %s %ld/%d bytes %s BIO#%pp [mem: %pp] %s",
2198 "%s: I/O error, %d bytes expected to %s on BIO#%pp [mem: %pp]",