regex             271 attrd/attrd_common.c attrd_failure_regex(regex_t *regex, const char *rsc, const char *op,
regex             290 attrd/attrd_common.c     rc = regcomp(regex, pattern, REG_EXTENDED|REG_NOSUB);
regex              51 attrd/attrd_common.h int attrd_failure_regex(regex_t *regex, const char *rsc, const char *op,
regex             206 attrd/commands.c     const char *regex = crm_element_value(xml, F_ATTRD_REGEX);
regex             209 attrd/commands.c     if ((attr == NULL) && regex) {
regex             213 attrd/commands.c         crm_debug("Setting %s to %s", regex, value);
regex             214 attrd/commands.c         if (regcomp(r_patt, regex, REG_EXTENDED|REG_NOSUB)) {
regex             215 attrd/commands.c             crm_err("Bad regex '%s' for update", regex);
regex             223 attrd/commands.c                     crm_trace("Matched %s with %s", attr, regex);
regex             499 attrd/commands.c     regex_t regex;
regex             501 attrd/commands.c     if (attrd_failure_regex(&regex, rsc, op, interval) != pcmk_ok) {
regex             516 attrd/commands.c         if (regexec(&regex, attr, 0, NULL, 0) == 0) {
regex             523 attrd/commands.c     regfree(&regex);
regex             246 attrd/legacy.c     regex_t regex;
regex             250 attrd/legacy.c     if (attrd_failure_regex(&regex, rsc, op, interval) != pcmk_ok) {
regex             264 attrd/legacy.c         if (regexec(&regex, hash_entry->id, 0, NULL, 0) == 0) {
regex             269 attrd/legacy.c     regfree(&regex);
regex            1165 attrd/legacy.c         regex_t regex;
regex            1168 attrd/legacy.c         if (regcomp(&regex, pattern, REG_EXTENDED|REG_NOSUB)) {
regex            1178 attrd/legacy.c             int rc = regexec(&regex, hash_entry->id, 0, NULL, 0);
regex            1185 attrd/legacy.c         regfree(&regex);