Lines Matching refs:from

16  * license is obtained from Japan Network Information Center ("JPNIC"),
34 * derived from this Software without specific prior written approval of
141 idn_encodename(idn_action_t actions, const char *from, char *to, size_t tolen) {
144 assert(from != NULL && to != NULL);
146 TRACE(("idn_encodename(actions=%s, from=\"%s\")\n",
148 idn__debug_xstring(from, 50)));
153 r = idn_res_encodename(default_conf, actions, from, to, tolen);
166 idn_decodename(idn_action_t actions, const char *from, char *to, size_t tolen) {
169 assert(from != NULL && to != NULL);
171 TRACE(("idn_decodename(actions=%s, from=\"%s\", tolen=%d)\n",
173 idn__debug_xstring(from, 50), (int)tolen));
178 r = idn_res_decodename(default_conf, actions, from, to, tolen);
191 idn_decodename2(idn_action_t actions, const char *from, char *to, size_t tolen,
195 assert(from != NULL && to != NULL);
197 TRACE(("idn_decodename2(actions=%s, from=\"%s\", tolen=%d)\n",
199 idn__debug_xstring(from, 50), (int)tolen));
204 r = idn_res_decodename2(default_conf, actions, from, to, tolen,
228 mdn_encodename(int actions, const char *from, char *to, size_t tolen) {
231 assert(from != NULL && to != NULL);
233 TRACE(("mdn_encodename(actions=%s, from=\"%s\")\n",
235 idn__debug_xstring(from, 50)));
240 return (idn_res_encodename(default_conf, actions, from, to, tolen));
244 mdn_decodename(int actions, const char *from, char *to, size_t tolen) {
247 assert(from != NULL && to != NULL);
249 TRACE(("idn_decodename(actions=%s, from=\"%s\", tolen=%d)\n",
251 idn__debug_xstring(from, 50), (int)tolen));
256 return (idn_res_decodename(default_conf, actions, from, to, tolen));