Home | History | Annotate | Download | only in lib

Lines Matching defs:decoded_len

362   /* decoded_len should be size_t or ssize_t but conn->mech->decode returns an
364 int decoded_len;
380 decoded_len = curlx_uztosi(decoded_sz);
382 decoded_len = conn->mech->decode(conn->app_data, buf, decoded_len,
384 if(decoded_len <= 0) {
390 buf[decoded_len] = '\n';
391 Curl_debug(conn->data, CURLINFO_HEADER_IN, buf, decoded_len + 1, conn);
394 buf[decoded_len] = '\0';
395 if(decoded_len <= 3)
403 if(buf[decoded_len - 1] == '\n')
404 buf[decoded_len - 1] = '\0';
405 /* FIXME: Is |buffer| length always greater than |decoded_len|? */