Lines Matching refs:in_bytes
106 size_t in_bytes, out_bytes, rc; in Curl_convert_to_network() local
125 in_bytes = out_bytes = length; in Curl_convert_to_network()
126 rc = iconv(*cd, &input_ptr, &in_bytes, in Curl_convert_to_network()
130 if((rc == ICONV_ERROR) || (in_bytes)) { in Curl_convert_to_network()
172 size_t in_bytes, out_bytes, rc; in Curl_convert_from_network() local
191 in_bytes = out_bytes = length; in Curl_convert_from_network()
192 rc = iconv(*cd, &input_ptr, &in_bytes, in Curl_convert_from_network()
196 if((rc == ICONV_ERROR) || (in_bytes)) { in Curl_convert_from_network()
239 size_t in_bytes, out_bytes, rc; in Curl_convert_from_utf8() local
258 in_bytes = out_bytes = length; in Curl_convert_from_utf8()
259 rc = iconv(*cd, &input_ptr, &in_bytes, in Curl_convert_from_utf8()
263 if((rc == ICONV_ERROR) || (in_bytes)) { in Curl_convert_from_utf8()