• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/lib/

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
139 idn_encodename(idn_action_t actions, const char *from, char *to, size_t tolen) {
142 assert(from != NULL && to != NULL);
144 TRACE(("idn_encodename(actions=%s, from=\"%s\")\n",
146 idn__debug_xstring(from, 50)));
151 r = idn_res_encodename(default_conf, actions, from, to, tolen);
164 idn_decodename(idn_action_t actions, const char *from, char *to, size_t tolen) {
167 assert(from != NULL && to != NULL);
169 TRACE(("idn_decodename(actions=%s, from=\"%s\", tolen=%d)\n",
171 idn__debug_xstring(from, 50), (int)tolen));
176 r = idn_res_decodename(default_conf, actions, from, to, tolen);
189 idn_decodename2(idn_action_t actions, const char *from, char *to, size_t tolen,
193 assert(from != NULL && to != NULL);
195 TRACE(("idn_decodename2(actions=%s, from=\"%s\", tolen=%d)\n",
197 idn__debug_xstring(from, 50), (int)tolen));
202 r = idn_res_decodename2(default_conf, actions, from, to, tolen,
226 mdn_encodename(int actions, const char *from, char *to, size_t tolen) {
229 assert(from != NULL && to != NULL);
231 TRACE(("mdn_encodename(actions=%s, from=\"%s\")\n",
233 idn__debug_xstring(from, 50)));
238 return (idn_res_encodename(default_conf, actions, from, to, tolen));
242 mdn_decodename(int actions, const char *from, char *to, size_t tolen) {
245 assert(from != NULL && to != NULL);
247 TRACE(("idn_decodename(actions=%s, from=\"%s\", tolen=%d)\n",
249 idn__debug_xstring(from, 50), (int)tolen));
254 return (idn_res_decodename(default_conf, actions, from, to, tolen));