Lines Matching defs:len
33 int len;
35 len = i2d_OCSP_REQUEST(req, NULL);
46 uri->hostname, uri->port, len);
67 int len;
106 while ((len = BIO_read(request, buf, sizeof buf)) > 0) {
108 apr_size_t remain = len;
136 apr_size_t len;
148 rv = apr_brigade_pflatten(bbout, &line, &len, p);
155 if (len == 0) {
161 if (line[len-1] != APR_ASCII_LF) {
167 line[len-1] = '\0';
168 if (len > 1 && line[len-2] == APR_ASCII_CR) {
169 line[len-2] = '\0';
233 apr_size_t len;
237 rv = apr_bucket_read(e, &data, &len, APR_BLOCK_READ);
248 if (len == 0) {
254 count += len;
263 " bytes, %" APR_SIZE_T_FMT " total", len, count);
265 BIO_write(bio, data, (int)len);