Lines Matching defs:str
124 idn__filechecker_lookup(idn__filechecker_t ctx, const unsigned long *str,
128 assert(ctx != NULL && str != NULL);
130 TRACE(("idn__filechecker_lookup(str=\"%s\")\n",
131 idn__debug_ucs4xstring(str, 50)));
133 while (*str != '\0') {
136 r = idn_ucsset_lookup(ctx->set, *str, &exists);
142 *found = str;
145 str++;
258 idn__filechecker_lookupproc(void *ctx, const unsigned long *str,
260 return idn__filechecker_lookup((idn__filechecker_t)ctx, str, found);