Lines Matching defs:mapper
168 idn_mapper_t mapper;
194 if (idn__strhash_get(ctx->maphash, hash_key, (void **)&mapper)
196 r = idn_mapper_create(&mapper);
200 r = idn__strhash_put(ctx->maphash, hash_key, mapper);
205 r = idn_mapper_add(mapper, name);
238 idn_mapper_t mapper;
256 mapper = NULL;
257 r = idn__strhash_get(ctx->maphash, hash_key, (void **)&mapper);
261 idn_mapper_incrref(mapper);
263 return (mapper);
270 idn_mapper_t mapper = NULL;
298 * Get mapper for the TLD.
300 if (idn__strhash_get(ctx->maphash, hash_key, (void **)&mapper)
303 idn__strhash_get(ctx->maphash, hash_key, (void **)&mapper);
308 * If default mapper has not been registered, copy the string.
310 if (mapper == NULL) {
311 TRACE(("idn_mapselector_map(): no mapper\n"));
319 r = idn_mapper_map(mapper, from, to, tolen);