Lines Matching refs:in_bytes
100 size_t in_bytes, out_bytes, rc; in Curl_convert_to_network() local
119 in_bytes = out_bytes = length; in Curl_convert_to_network()
120 rc = iconv(data->outbound_cd, (const char**)&input_ptr, &in_bytes, in Curl_convert_to_network()
122 if((rc == ICONV_ERROR) || (in_bytes != 0)) { in Curl_convert_to_network()
160 size_t in_bytes, out_bytes, rc; in Curl_convert_from_network() local
179 in_bytes = out_bytes = length; in Curl_convert_from_network()
180 rc = iconv(data->inbound_cd, (const char **)&input_ptr, &in_bytes, in Curl_convert_from_network()
182 if((rc == ICONV_ERROR) || (in_bytes != 0)) { in Curl_convert_from_network()
221 size_t in_bytes, out_bytes, rc; in Curl_convert_from_utf8() local
240 in_bytes = out_bytes = length; in Curl_convert_from_utf8()
241 rc = iconv(data->utf8_cd, &input_ptr, &in_bytes, in Curl_convert_from_utf8()
243 if((rc == ICONV_ERROR) || (in_bytes != 0)) { in Curl_convert_from_utf8()