Lines Matching defs:from
14 * license is obtained from Japan Network Information Center ("JPNIC"),
32 * derived from this Software without specific prior written approval of
133 idnConvReq(idn_resconf_t ctx, const char FAR *from, char FAR *to, size_t tolen)
139 idnLogPrintf(idn_log_level_trace, "idnConvReq(from=%-.100s)\n", from);
142 if (strlen(from) >= tolen)
144 strcpy(to, from);
148 r = idn_res_encodename(ctx, IDN_ENCODE_APP, from, to, tolen);
164 idnConvRsp(idn_resconf_t ctx, const char FAR *from, char FAR *to, size_t tolen)
168 idnLogPrintf(idn_log_level_trace, "idnConvRsp(from=%-.100s)\n", from);
170 if (strlen(from) >= tolen)
172 strcpy(to, from);
175 from, to, tolen) == idn_success) {