Lines Matching refs:l

168   int l;  in dynconvert()  local
180 l = convert(d, dlen, dccsid, s, slen, sccsid); in dynconvert()
182 if(l < 0) { in dynconvert()
192 int l2 = convert(d + l, dlen - l, dccsid, &nullbyte, -1, ASCII_CCSID); in dynconvert()
199 l += l2; in dynconvert()
202 if((size_t) l < dlen) { in dynconvert()
203 cp = realloc(d, l); /* Shorten to minimum needed. */ in dynconvert()
400 int l = convert(*bufp, *left, ccsid, *stringp, -1, ASCII_CCSID); in convert_version_info_string() local
402 if(l <= 0) in convert_version_info_string()
406 *bufp += l; in convert_version_info_string()
407 *left -= l; in convert_version_info_string()
703 int l; in Curl_formadd_convert() local
711 l = (int) forms[lengthx].value; in Curl_formadd_convert()
713 l = strlen(forms[formx].value) + 1; in Curl_formadd_convert()
715 cp = malloc(MAX_CONV_EXPANSION * l); in Curl_formadd_convert()
720 l = convert(cp, MAX_CONV_EXPANSION * l, ASCII_CCSID, in Curl_formadd_convert()
721 forms[formx].value, l, ccsid); in Curl_formadd_convert()
723 if(l < 0) { in Curl_formadd_convert()
728 cp2 = realloc(cp, l); /* Shorten buffer to the string size. */ in Curl_formadd_convert()
736 forms[lengthx].value = (char *) l; /* Update length after conversion. */ in Curl_formadd_convert()
738 return l; in Curl_formadd_convert()
1027 int l; in Curl_formget_callback_ccsid() local
1040 l = convert(b, MAX_CONV_EXPANSION * len, p->ccsid, buf, len, ASCII_CCSID); in Curl_formget_callback_ccsid()
1042 if(l < 0) { in Curl_formget_callback_ccsid()
1047 ret = (*p->append)(p->arg, b, l); in Curl_formget_callback_ccsid()
1049 return ret == l ? len : -1; in Curl_formget_callback_ccsid()