r_patt            285 daemons/attrd/attrd_commands.c         regex_t *r_patt = calloc(1, sizeof(regex_t));
r_patt            288 daemons/attrd/attrd_commands.c         if (regcomp(r_patt, regex, REG_EXTENDED|REG_NOSUB)) {
r_patt            294 daemons/attrd/attrd_commands.c                 int status = regexec(r_patt, attr, 0, NULL, 0);
r_patt            305 daemons/attrd/attrd_commands.c         regfree(r_patt);
r_patt            306 daemons/attrd/attrd_commands.c         free(r_patt);
r_patt            759 daemons/fenced/fenced_remote.c     regex_t r_patt;
r_patt            780 daemons/fenced/fenced_remote.c             if (regcomp(&r_patt, tp->target_pattern, REG_EXTENDED|REG_NOSUB)) {
r_patt            783 daemons/fenced/fenced_remote.c                 int status = regexec(&r_patt, node, 0, NULL, 0);
r_patt            785 daemons/fenced/fenced_remote.c                 regfree(&r_patt);
r_patt           1105 lib/common/strings.c         regex_t *r_patt = calloc(1, sizeof(regex_t));
r_patt           1111 lib/common/strings.c             free(r_patt);
r_patt           1118 lib/common/strings.c         regcomp_rc = regcomp(r_patt, s2, reg_flags);
r_patt           1123 lib/common/strings.c             rc = regexec(r_patt, s1, 0, NULL, 0);
r_patt           1130 lib/common/strings.c         regfree(r_patt);
r_patt           1131 lib/common/strings.c         free(r_patt);
r_patt            304 lib/pacemaker/pcmk_sched_location.c         regex_t *r_patt = calloc(1, sizeof(regex_t));
r_patt            313 lib/pacemaker/pcmk_sched_location.c         if (regcomp(r_patt, value, REG_EXTENDED)) {
r_patt            317 lib/pacemaker/pcmk_sched_location.c             regfree(r_patt);
r_patt            318 lib/pacemaker/pcmk_sched_location.c             free(r_patt);
r_patt            328 lib/pacemaker/pcmk_sched_location.c             if(r_patt->re_nsub > 0) {
r_patt            329 lib/pacemaker/pcmk_sched_location.c                 nregs = r_patt->re_nsub + 1;
r_patt            335 lib/pacemaker/pcmk_sched_location.c             status = regexec(r_patt, r->id, nregs, pmatch, 0);
r_patt            360 lib/pacemaker/pcmk_sched_location.c         regfree(r_patt);
r_patt            361 lib/pacemaker/pcmk_sched_location.c         free(r_patt);