• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/postfix-252/postfix/src/util/

Lines Matching defs:mapname

142     const char *mapname;		/* name of regexp map */
208 static void dict_pcre_exec_error(const char *mapname, int lineno, int errval)
213 mapname, lineno);
218 mapname, lineno);
222 mapname, lineno);
226 mapname, lineno);
231 mapname, lineno);
236 mapname, lineno);
241 mapname, lineno);
245 mapname, lineno, errval);
419 static int dict_pcre_get_pattern(const char *mapname, int lineno, char **bufp,
441 mapname, lineno);
462 "ignoring this rule", mapname, lineno, re_delimiter);
499 "skipping this rule", mapname, lineno, *p);
527 ctxt->mapname, ctxt->lineno, vstring_str(buf));
533 ctxt->mapname, ctxt->lineno, vstring_str(buf));
541 ctxt->mapname, ctxt->lineno);
549 static int dict_pcre_compile(const char *mapname, int lineno,
560 mapname, lineno, errptr, error);
566 mapname, lineno, error);
592 static DICT_PCRE_RULE *dict_pcre_parse_rule(const char *mapname, int lineno,
613 if (dict_pcre_get_pattern(mapname, lineno, &p, &regexp) == 0)
623 mapname, lineno);
628 prescan_context.mapname = mapname;
645 "skipping this rule", mapname, lineno);
654 "replacement text: skipping this rule", mapname, lineno);
660 "skipping this rule", mapname, lineno);
667 if (dict_pcre_compile(mapname, lineno, &regexp, &engine) == 0)
674 mapname, lineno);
677 "skipping this rule", mapname, lineno,
719 if (!dict_pcre_get_pattern(mapname, lineno, &p, &regexp))
729 "IF statement: \"%s\"", mapname, lineno, p);
731 " to statements between IF and ENDIF", mapname, lineno);
737 if (dict_pcre_compile(mapname, lineno, &regexp, &engine) == 0)
765 mapname, lineno);
776 mapname, lineno);
791 mapname, lineno);
798 DICT *dict_pcre_open(const char *mapname, int open_flags, int dict_flags)
814 return (dict_surrogate(DICT_TYPE_PCRE, mapname, open_flags, dict_flags,
816 DICT_TYPE_PCRE, mapname));
821 if ((map_fp = vstream_fopen(mapname, O_RDONLY, 0)) == 0)
822 return (dict_surrogate(DICT_TYPE_PCRE, mapname, open_flags, dict_flags,
823 "open %s: %m", mapname));
825 msg_fatal("fstat %s: %m", mapname);
829 dict_pcre = (DICT_PCRE *) dict_alloc(DICT_TYPE_PCRE, mapname,
855 rule = dict_pcre_parse_rule(mapname, lineno, p, nesting, dict_flags);
872 mapname, lineno);