Lines Matching defs:from
40 char *from;
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)
97 param.from = from;
102 if (IsExcludeToEncode(from) == 0) {
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);
138 char *from = g_encodeArray[i];
142 if (IsExcludeToEncode(from) != 0) {
148 param.to = from;
149 param.from = "utf8";
159 CompareIconvResult(to, from, input, inputLen);