Lines Matching refs:to
9 * Unless required by applicable law or agreed to in writing, software
39 char *to;
55 iconv_t cd = iconv_open(param->to, param->from);
57 t_error("iconv opened failed, from: %s, to: %s, error: %s \n", param->from, param->to, strerror(errno));
66 t_error("iconv converted failed, from: %s, to: %s, error: %s \n", param->from, param->to, strerror(errno));
85 void CompareIconvResult(char *to, char *from, char *src, size_t srcLen)
87 if (IsExcludeToEncode(to) == 0) {
96 param.to = to;
110 param.to = from;
111 param.from = to;
117 t_error("compare error,from: %s, to: %s, newOutput: %s,\n", from, to, param.output);
125 t_error("compare error,from: %s, to: %s, newOutput: %s,\n", from, to, param.output);
148 param.to = from;
158 char *to = g_encodeArray[j];
159 CompareIconvResult(to, from, input, inputLen);