r_patt            211 attrd/commands.c         regex_t *r_patt = calloc(1, sizeof(regex_t));
r_patt            214 attrd/commands.c         if (regcomp(r_patt, regex, REG_EXTENDED|REG_NOSUB)) {
r_patt            220 attrd/commands.c                 int status = regexec(r_patt, attr, 0, NULL, 0);
r_patt            231 attrd/commands.c         regfree(r_patt);
r_patt            232 attrd/commands.c         free(r_patt);
r_patt            704 fencing/remote.c     regex_t r_patt;
r_patt            725 fencing/remote.c             if (regcomp(&r_patt, tp->target_pattern, REG_EXTENDED|REG_NOSUB)) {
r_patt            728 fencing/remote.c                 int status = regexec(&r_patt, node, 0, NULL, 0);
r_patt            730 fencing/remote.c                 regfree(&r_patt);
r_patt            665 pengine/constraints.c         regex_t *r_patt = calloc(1, sizeof(regex_t));
r_patt            674 pengine/constraints.c         if (regcomp(r_patt, value, REG_EXTENDED)) {
r_patt            676 pengine/constraints.c             regfree(r_patt);
r_patt            677 pengine/constraints.c             free(r_patt);
r_patt            687 pengine/constraints.c             if(r_patt->re_nsub > 0) {
r_patt            688 pengine/constraints.c                 nregs = r_patt->re_nsub + 1;
r_patt            694 pengine/constraints.c             status = regexec(r_patt, r->id, nregs, pmatch, 0);
r_patt            721 pengine/constraints.c         regfree(r_patt);
r_patt            722 pengine/constraints.c         free(r_patt);