Lines Matching defs:pmap
672 const struct dns_errormap *pmap;
676 pmap = dns_errormap;
677 while (pmap->text != NULL) {
678 if (strcmp(name, pmap->text) == 0)
680 ++pmap;
683 if (pmap->text != NULL)
684 result = pmap->result;
703 const struct dc_method_map *pmap;
707 pmap = dc_method_map;
708 while (pmap->text != NULL) {
709 if (strcmp(name, pmap->text) == 0)
711 ++pmap;
714 if (pmap->text != NULL)
715 dc_method = pmap->dc_method;