Lines Matching refs:in_bytes
102 size_t in_bytes, out_bytes, rc; in Curl_convert_to_network() local
121 in_bytes = out_bytes = length; in Curl_convert_to_network()
122 rc = iconv(*cd, &input_ptr, &in_bytes, in Curl_convert_to_network()
126 if((rc == ICONV_ERROR) || (in_bytes != 0)) { in Curl_convert_to_network()
165 size_t in_bytes, out_bytes, rc; in Curl_convert_from_network() local
184 in_bytes = out_bytes = length; in Curl_convert_from_network()
185 rc = iconv(*cd, &input_ptr, &in_bytes, in Curl_convert_from_network()
189 if((rc == ICONV_ERROR) || (in_bytes != 0)) { in Curl_convert_from_network()
229 size_t in_bytes, out_bytes, rc; in Curl_convert_from_utf8() local
248 in_bytes = out_bytes = length; in Curl_convert_from_utf8()
249 rc = iconv(*cd, &input_ptr, &in_bytes, in Curl_convert_from_utf8()
253 if((rc == ICONV_ERROR) || (in_bytes != 0)) { in Curl_convert_from_utf8()