match             122 daemons/controld/controld_metadata.c     xmlNode *match = NULL;
match             160 daemons/controld/controld_metadata.c     match = pcmk__xe_first_child(metadata, PCMK_XE_ACTIONS, NULL, NULL);
match             161 daemons/controld/controld_metadata.c     for (match = pcmk__xe_first_child(match, PCMK_XE_ACTION, NULL, NULL);
match             162 daemons/controld/controld_metadata.c          match != NULL; match = pcmk__xe_next(match, PCMK_XE_ACTION)) {
match             164 daemons/controld/controld_metadata.c         const char *action_name = crm_element_value(match, PCMK_XA_NAME);
match             182 daemons/controld/controld_metadata.c     match = pcmk__xe_first_child(metadata, PCMK_XE_PARAMETERS, NULL, NULL);
match             183 daemons/controld/controld_metadata.c     for (match = pcmk__xe_first_child(match, PCMK_XE_PARAMETER, NULL, NULL);
match             184 daemons/controld/controld_metadata.c          match != NULL; match = pcmk__xe_next(match, PCMK_XE_PARAMETER)) {
match             186 daemons/controld/controld_metadata.c         const char *param_name = crm_element_value(match, PCMK_XA_NAME);
match             192 daemons/controld/controld_metadata.c             struct ra_param_s *p = ra_param_from_xml(match);
match             394 daemons/controld/controld_schedulerd.c         xmlNode *match = getXpathResult(xpathObj, lpc);
match             396 daemons/controld/controld_schedulerd.c                   pcmk__xe_id(match), attr_name, attr_value);
match             397 daemons/controld/controld_schedulerd.c         crm_xml_add(match, PCMK_XA_VALUE, attr_value);
match              95 daemons/controld/controld_te_callbacks.c     char *match = NULL;
match              97 daemons/controld/controld_te_callbacks.c     match = strstr(mutable_path, PCMK__XE_NODE_STATE "[@" PCMK_XA_ID "=\'");
match              98 daemons/controld/controld_te_callbacks.c     if (match == NULL) {
match             102 daemons/controld/controld_te_callbacks.c     match += strlen(PCMK__XE_NODE_STATE "[@" PCMK_XA_ID "=\'");
match             104 daemons/controld/controld_te_callbacks.c     search = strchr(match, '\'');
match             111 daemons/controld/controld_te_callbacks.c     node_uuid = pcmk__str_copy(match);
match             235 daemons/controld/controld_te_callbacks.c     xmlNode *match = NULL;
match             263 daemons/controld/controld_te_callbacks.c         match = change->children;
match             266 daemons/controld/controld_te_callbacks.c         match = pcmk__xe_first_child(change, PCMK_XE_CHANGE_RESULT, NULL, NULL);
match             267 daemons/controld/controld_te_callbacks.c         if(match) {
match             268 daemons/controld/controld_te_callbacks.c             match = match->children;
match             279 daemons/controld/controld_te_callbacks.c     if (match) {
match             280 daemons/controld/controld_te_callbacks.c         if (match->type == XML_COMMENT_NODE) {
match             284 daemons/controld/controld_te_callbacks.c         name = (const char *)match->name;
match             316 daemons/controld/controld_te_callbacks.c         process_cib_diff(match, change, op, xpath);
match             319 daemons/controld/controld_te_callbacks.c         process_status_diff(match, change, op, xpath);
match             322 daemons/controld/controld_te_callbacks.c         process_node_state_diff(match, change, op, xpath);
match             325 daemons/controld/controld_te_callbacks.c         process_resource_updates(pcmk__xe_id(match), match, change, op,
match             331 daemons/controld/controld_te_callbacks.c         process_resource_updates(local_node, match, change, op, xpath);
match             337 daemons/controld/controld_te_callbacks.c         process_lrm_resource_diff(match, local_node);
match             343 daemons/controld/controld_te_callbacks.c         process_graph_event(match, local_node);
match             383 daemons/controld/controld_te_events.c     pcmk__graph_action_t *match = NULL;
match             390 daemons/controld/controld_te_events.c          gIter != NULL && match == NULL;
match             394 daemons/controld/controld_te_events.c              gIter2 != NULL && match == NULL;
match             397 daemons/controld/controld_te_events.c             match = (pcmk__graph_action_t *) gIter2->data;
match             398 daemons/controld/controld_te_events.c             if (pcmk_is_set(match->flags, pcmk__graph_action_executed)) {
match             399 daemons/controld/controld_te_events.c                 xpath_ret = xpath_search(match->xml, xpath);
match             401 daemons/controld/controld_te_events.c                     match = NULL;
match             406 daemons/controld/controld_te_events.c                 match = NULL;
match             413 daemons/controld/controld_te_events.c     if (match != NULL) {
match             414 daemons/controld/controld_te_events.c         crm_debug("Shutdown action %d (%s) found for node %s", match->id,
match             415 daemons/controld/controld_te_events.c                   crm_element_value(match->xml, PCMK__XA_OPERATION_KEY),
match             420 daemons/controld/controld_te_events.c     return match;
match              45 daemons/fenced/fenced_cib.c     xmlNode *match;
match              64 daemons/fenced/fenced_cib.c     match = get_xpath_object((const char *) xpath->str, local_cib, LOG_NEVER);
match              67 daemons/fenced/fenced_cib.c     return (match != NULL);
match              71 daemons/fenced/fenced_cib.c add_topology_level(xmlNode *match)
match              76 daemons/fenced/fenced_cib.c     CRM_CHECK(match != NULL, return);
match              78 daemons/fenced/fenced_cib.c     fenced_register_level(match, &desc, &result);
match             103 daemons/fenced/fenced_cib.c remove_topology_level(xmlNode *match)
match             108 daemons/fenced/fenced_cib.c     CRM_CHECK(match != NULL, return);
match             110 daemons/fenced/fenced_cib.c     key = stonith_level_key(match, fenced_target_by_unknown);
match             111 daemons/fenced/fenced_cib.c     crm_element_value_int(match, PCMK_XA_INDEX, &index);
match             122 daemons/fenced/fenced_cib.c         xmlNode *match = getXpathResult(xpathObj, lpc);
match             124 daemons/fenced/fenced_cib.c         remove_topology_level(match);
match             125 daemons/fenced/fenced_cib.c         add_topology_level(match);
match             420 daemons/fenced/fenced_cib.c                 xmlNode *match = pcmk__xe_first_child(change,
match             424 daemons/fenced/fenced_cib.c                 if (match != NULL) {
match             425 daemons/fenced/fenced_cib.c                     remove_topology_level(match->children);
match             426 daemons/fenced/fenced_cib.c                     add_topology_level(match->children);
match             946 daemons/fenced/fenced_commands.c         xmlNode *match = getXpathResult(xpath, lpc);
match             948 daemons/fenced/fenced_commands.c         CRM_LOG_ASSERT(match != NULL);
match             949 daemons/fenced/fenced_commands.c         if(match == NULL) { continue; };
match             951 daemons/fenced/fenced_commands.c         action = crm_element_value(match, PCMK_XA_NAME);
match             969 daemons/fenced/fenced_commands.c             if (pcmk__xe_attr_is_true(match, PCMK_XA_AUTOMATIC)
match             970 daemons/fenced/fenced_commands.c                 || pcmk__xe_attr_is_true(match, PCMK__XA_REQUIRED)) {
match             978 daemons/fenced/fenced_commands.c             && pcmk__xe_attr_is_true(match, PCMK_XA_ON_TARGET)) {
match             337 daemons/fenced/fenced_remote.c         GList *match = g_list_find_custom(op->devices_list, iter->data,
match             340 daemons/fenced/fenced_remote.c         if (match) {
match             341 daemons/fenced/fenced_remote.c             op->devices_list = g_list_remove(op->devices_list, match->data);
match             514 daemons/fenced/fenced_remote.c     xmlNode *match = get_xpath_object("//@" PCMK__XA_ST_DELEGATE, xml,
match             517 daemons/fenced/fenced_remote.c     if (match == NULL) {
match             520 daemons/fenced/fenced_remote.c         return crm_element_value_copy(match, PCMK__XA_ST_DELEGATE);
match             803 daemons/fenced/fenced_remote.c     GList *match  = g_list_find_custom(op->automatic_list, device,
match             806 daemons/fenced/fenced_remote.c     if (!match) {
match             822 daemons/fenced/fenced_remote.c     GList *match = g_list_find_custom(op->automatic_list, device,
match             825 daemons/fenced/fenced_remote.c     if (match) {
match             826 daemons/fenced/fenced_remote.c         op->automatic_list = g_list_remove(op->automatic_list, match->data);
match            1642 daemons/fenced/fenced_remote.c                         GList *match = g_list_find_custom(auto_list, device_list->data,
match            1644 daemons/fenced/fenced_remote.c                         if (match) {
match            1645 daemons/fenced/fenced_remote.c                             auto_list = g_list_remove(auto_list, match->data);
match            2117 daemons/fenced/fenced_remote.c     device_properties_t *match = NULL;
match            2134 daemons/fenced/fenced_remote.c             match = NULL;
match            2135 daemons/fenced/fenced_remote.c             for (iter = op->query_results; iter && !match; iter = iter->next) {
match            2141 daemons/fenced/fenced_remote.c                 match = find_peer_device(op, peer, device->data, st_device_supports_none);
match            2143 daemons/fenced/fenced_remote.c             if (!match) {
match              30 include/crm/common/rules_internal.h char *pcmk__replace_submatches(const char *string, const char *match,
match              45 include/crm/common/strings_internal.h bool pcmk__ends_with(const char *s, const char *match);
match              46 include/crm/common/strings_internal.h bool pcmk__ends_with_ext(const char *s, const char *match);
match              41 include/crm/common/xml_element_internal.h                                     bool (*match)(xmlAttrPtr, void *),
match             708 lib/cib/cib_ops.c         xmlNode *match = getXpathResult(xpathObj, lpc);
match             710 lib/cib/cib_ops.c         if (match == NULL) {
match             714 lib/cib/cib_ops.c         path = xmlGetNodePath(match);
match             719 lib/cib/cib_ops.c             if (match == *result_cib) {
match             726 lib/cib/cib_ops.c             pcmk__xml_free(match);
match             738 lib/cib/cib_ops.c             if (pcmk__xe_update_match(match, input, flags) != pcmk_rc_ok) {
match             745 lib/cib/cib_ops.c             pcmk__xml_copy(match, input);
match             752 lib/cib/cib_ops.c                                                    (const char *) match->name);
match             754 lib/cib/cib_ops.c                 pcmk__xe_copy_attrs(shallow, match, pcmk__xaf_none);
match             762 lib/cib/cib_ops.c                 xmlNode *parent = match;
match             791 lib/cib/cib_ops.c                 pcmk__xml_copy(*answer, match);
match             794 lib/cib/cib_ops.c                 *answer = match;
match             799 lib/cib/cib_ops.c             xmlNode *parent = match->parent;
match             801 lib/cib/cib_ops.c             pcmk__xml_free(match);
match             235 lib/common/acl.c             xmlNode *match = getXpathResult(xpathObj, lpc);
match             237 lib/common/acl.c             nodepriv = match->_private;
match             243 lib/common/acl.c                     GString *path = pcmk__element_xpath(match);
match             462 lib/common/acl.c                 xmlNode *match = getXpathResult(xpathObj, lpc);
match             464 lib/common/acl.c                 if (!purge_xml_attributes(match) && (match == target)) {
match              19 lib/common/lists.c         GList *match = g_list_find_custom(result, item->data, cmp);
match              21 lib/common/lists.c         if (match != NULL) {
match              22 lib/common/lists.c             result = g_list_remove(result, match->data);
match            1200 lib/common/mainloop.c     mainloop_child_t *match = NULL;
match            1205 lib/common/mainloop.c     for (iter = child_list; iter != NULL && match == NULL; iter = iter->next) {
match            1208 lib/common/mainloop.c             match = child;
match            1212 lib/common/mainloop.c     if (match == NULL) {
match            1216 lib/common/mainloop.c     rc = child_kill_helper(match);
match            1224 lib/common/mainloop.c                   match->pid);
match            1234 lib/common/mainloop.c     if (!child_waitpid(match, waitflags)) {
match            1239 lib/common/mainloop.c     child_list = g_list_remove(child_list, match);
match            1240 lib/common/mainloop.c     child_free(match);
match             204 lib/common/nodes.c         xmlNode *match = get_xpath_object(xpath, cib, LOG_TRACE);
match             207 lib/common/nodes.c         if (match != NULL) {
match             208 lib/common/nodes.c             return crm_element_value(match, PCMK_XA_VALUE);
match             546 lib/common/patchset.c     xmlNode *match;
match             589 lib/common/patchset.c         xmlNode *match = NULL;
match             606 lib/common/patchset.c         match = search_v2_xpath(xml, xpath, position);
match             607 lib/common/patchset.c         crm_trace("Performing %s on %s with %p", op, xpath, match);
match             609 lib/common/patchset.c         if ((match == NULL) && (strcmp(op, PCMK_VALUE_DELETE) == 0)) {
match             613 lib/common/patchset.c         } else if (match == NULL) {
match             625 lib/common/patchset.c             change_obj->match = match;
match             631 lib/common/patchset.c                 if ((match->parent != NULL) && (match->parent->last != NULL)) {
match             632 lib/common/patchset.c                     xmlAddNextSibling(match->parent->last, match);
match             637 lib/common/patchset.c             pcmk__xml_free(match);
match             649 lib/common/patchset.c             pcmk__xe_remove_matching_attrs(match, NULL, NULL); // Remove all
match             656 lib/common/patchset.c                 crm_xml_add(match, name, value);
match             670 lib/common/patchset.c         xmlNode *match = change_obj->match;
match             679 lib/common/patchset.c         crm_trace("Continue performing %s on %s with %p", op, xpath, match);
match             686 lib/common/patchset.c             match_child = match->children;
match             694 lib/common/patchset.c             child = pcmk__xml_copy(match, change->children);
match             709 lib/common/patchset.c             if (position != pcmk__xml_position(match, pcmk__xf_skip)) {
match             713 lib/common/patchset.c                 if (p > pcmk__xml_position(match, pcmk__xf_skip)) {
match             717 lib/common/patchset.c                 pcmk__assert(match->parent != NULL);
match             718 lib/common/patchset.c                 match_child = match->parent->children;
match             726 lib/common/patchset.c                           match->name, position,
match             727 lib/common/patchset.c                           pcmk__xml_position(match, pcmk__xf_skip),
match             728 lib/common/patchset.c                           match->prev, (match_child? "next":"last"),
match             729 lib/common/patchset.c                           (match_child? match_child : match->parent->last));
match             732 lib/common/patchset.c                     xmlAddPrevSibling(match_child, match);
match             735 lib/common/patchset.c                     pcmk__assert(match->parent->last != NULL);
match             736 lib/common/patchset.c                     xmlAddNextSibling(match->parent->last, match);
match             741 lib/common/patchset.c                           match->name, position);
match             744 lib/common/patchset.c             if (position != pcmk__xml_position(match, pcmk__xf_skip)) {
match             746 lib/common/patchset.c                         match->name, pcmk__xe_id(match),
match             747 lib/common/patchset.c                         pcmk__xml_position(match, pcmk__xf_skip),
match             748 lib/common/patchset.c                         position, match->prev);
match             544 lib/common/rules.c process_submatches(const char *string, const char *match,
match             590 lib/common/rules.c             memcpy(expansion, match + submatches[submatch].rm_so,
match             613 lib/common/rules.c pcmk__replace_submatches(const char *string, const char *match,
match             619 lib/common/rules.c     if (pcmk__str_empty(string) || pcmk__str_empty(match)) {
match             624 lib/common/rules.c     if (!process_submatches(string, match, submatches, nmatches, NULL,
match             633 lib/common/rules.c     (void) process_submatches(string, match, submatches, nmatches, result,
match             575 lib/common/strings.c ends_with(const char *s, const char *match, bool as_extension)
match             577 lib/common/strings.c     if (pcmk__str_empty(match)) {
match             588 lib/common/strings.c             s = strrchr(s, match[0]);
match             589 lib/common/strings.c             return (s == NULL)? false : !strcmp(s, match);
match             592 lib/common/strings.c         mlen = strlen(match);
match             594 lib/common/strings.c         return ((slen >= mlen) && !strcmp(s + slen - mlen, match));
match             610 lib/common/strings.c pcmk__ends_with(const char *s, const char *match)
match             612 lib/common/strings.c     return ends_with(s, match, false);
match             637 lib/common/strings.c pcmk__ends_with_ext(const char *s, const char *match)
match             639 lib/common/strings.c     return ends_with(s, match, true);
match              18 lib/common/tests/rules/pcmk__replace_submatches_test.c static const char *match = "this is a string";
match              31 lib/common/tests/rules/pcmk__replace_submatches_test.c     expanded = pcmk__replace_submatches(string, match, submatches, nmatches);
match              53 lib/common/tests/rules/pcmk__replace_submatches_test.c                                          match, submatches, nmatches));
match              55 lib/common/tests/rules/pcmk__replace_submatches_test.c                                          match, submatches, nmatches));
match              57 lib/common/tests/rules/pcmk__replace_submatches_test.c                                          match, submatches, nmatches));
match              72 lib/common/tests/rules/pcmk__replace_submatches_test.c     assert_submatch("%0", match); // %0 matches entire string
match             380 lib/common/xml_element.c                                bool (*match)(xmlAttrPtr, void *),
match             387 lib/common/xml_element.c         if ((match == NULL) || match(a, user_data)) {
match              60 lib/common/xpath.c     xmlNode *match = NULL;
match              75 lib/common/xpath.c     match = xpathObj->nodesetval->nodeTab[index];
match              76 lib/common/xpath.c     CRM_CHECK(match != NULL, return NULL);
match              83 lib/common/xpath.c     if (match->type == XML_DOCUMENT_NODE) {
match              85 lib/common/xpath.c         match = match->children;
match              87 lib/common/xpath.c     } else if (match->type != XML_ELEMENT_NODE
match              88 lib/common/xpath.c                && match->parent && match->parent->type == XML_ELEMENT_NODE) {
match              90 lib/common/xpath.c         match = match->parent;
match              92 lib/common/xpath.c     } else if (match->type != XML_ELEMENT_NODE) {
match              94 lib/common/xpath.c         crm_err("We only support %d not %d", XML_ELEMENT_NODE, match->type);
match              95 lib/common/xpath.c         match = NULL;
match              97 lib/common/xpath.c     return match;
match             220 lib/common/xpath.c                 xmlNode *match = getXpathResult(xpathObj, lpc);
match             222 lib/common/xpath.c                 CRM_LOG_ASSERT(match != NULL);
match             223 lib/common/xpath.c                 if (match != NULL) {
match             224 lib/common/xpath.c                     matchNodePath = (char *) xmlGetNodePath(match);
match             472 lib/fencing/st_actions.c     xmlNode *match = get_xpath_object("//@" PCMK__XA_RC_CODE, xml, LOG_NEVER);
match             474 lib/fencing/st_actions.c     if (match == NULL) {
match             478 lib/fencing/st_actions.c         match = get_xpath_object("//@" PCMK__XA_ST_RC, xml, LOG_ERR);
match             480 lib/fencing/st_actions.c     return match;
match             569 lib/fencing/st_client.c             xmlNode *match = getXpathResult(xpathObj, lpc);
match             571 lib/fencing/st_client.c             CRM_LOG_ASSERT(match != NULL);
match             572 lib/fencing/st_client.c             if(match != NULL) {
match             573 lib/fencing/st_client.c                 xmlChar *match_path = xmlGetNodePath(match);
match             578 lib/fencing/st_client.c                                                  crm_element_value(match,
match            2448 lib/fencing/st_client.c         xmlNode *match = getXpathResult(xpath, lpc);
match            2450 lib/fencing/st_client.c         CRM_LOG_ASSERT(match != NULL);
match            2451 lib/fencing/st_client.c         if (match == NULL) {
match            2455 lib/fencing/st_client.c         parameter = crm_element_value(match, PCMK_XA_NAME);
match             388 lib/pacemaker/pcmk_injections.c     xmlNode *match = get_xpath_object(xpath, cib_node, LOG_TRACE);
match             391 lib/pacemaker/pcmk_injections.c     return match;
match              38 lib/pacemaker/pcmk_rule.c     xmlNodePtr match = NULL;
match             128 lib/pacemaker/pcmk_rule.c     match = getXpathResult(xpath_obj, 0);
match             133 lib/pacemaker/pcmk_rule.c     pcmk__assert((match != NULL)
match             134 lib/pacemaker/pcmk_rule.c                  && (pcmk__condition_type(match) == pcmk__condition_datetime));
match             136 lib/pacemaker/pcmk_rule.c     rc = pcmk__evaluate_date_expression(match, scheduler->priv->now, NULL);
match              86 lib/pacemaker/pcmk_sched_constraints.c         pcmk_resource_t *match = NULL;
match              88 lib/pacemaker/pcmk_sched_constraints.c         match = parent->priv->fns->find_rsc(parent, id, NULL,
match              90 lib/pacemaker/pcmk_sched_constraints.c         if (match != NULL) {
match              91 lib/pacemaker/pcmk_sched_constraints.c             if (!pcmk__str_eq(match->id, id, pcmk__str_none)) {
match              93 lib/pacemaker/pcmk_sched_constraints.c                 match = uber_parent(match);
match              94 lib/pacemaker/pcmk_sched_constraints.c                 crm_debug("Found %s for %s", match->id, id);
match              96 lib/pacemaker/pcmk_sched_constraints.c             return match;
match             329 lib/pacemaker/pcmk_sched_location.c         pcmk_node_t *match = pcmk_find_node(rsc->priv->scheduler, node);
match             333 lib/pacemaker/pcmk_sched_location.c         if (match == NULL) {
match             360 lib/pacemaker/pcmk_sched_location.c         location = pcmk__new_location(id, rsc, score_i, discovery, match);
match             166 lib/pacemaker/pcmk_scheduler.c         pcmk_node_t *match = NULL;
match             172 lib/pacemaker/pcmk_scheduler.c         match = g_hash_table_lookup(rsc->priv->allowed_nodes,
match             174 lib/pacemaker/pcmk_scheduler.c         if ((match != NULL)
match             175 lib/pacemaker/pcmk_scheduler.c             && (match->assign->probe_mode != pcmk__probe_exclusive)) {
match             176 lib/pacemaker/pcmk_scheduler.c             match->assign->score = -PCMK_SCORE_INFINITY;
match             634 lib/pengine/bundle.c     gpointer match = g_hash_table_lookup(rsc->priv->allowed_nodes, uname);
match             636 lib/pengine/bundle.c     if (match) {
match             637 lib/pengine/bundle.c         ((pcmk_node_t *) match)->assign->score = -PCMK_SCORE_INFINITY;
match             638 lib/pengine/bundle.c         ((pcmk_node_t *) match)->assign->probe_mode = pcmk__probe_never;
match             273 lib/pengine/native.c     bool match = false;
match             282 lib/pengine/native.c             match = false;
match             285 lib/pengine/native.c             match = true;
match             289 lib/pengine/native.c         match = true;
match             293 lib/pengine/native.c         match = true;
match             298 lib/pengine/native.c         match = pe_base_name_eq(rsc, id);
match             301 lib/pengine/native.c     if (match && on_node) {
match             303 lib/pengine/native.c             match = false;
match             307 lib/pengine/native.c     if (match) {
match            1279 lib/pengine/pe_actions.c                 pcmk_resource_t *match = gIter->data;
match            1280 lib/pengine/pe_actions.c                 const char *agent = g_hash_table_lookup(match->priv->meta,
match            1284 lib/pengine/pe_actions.c                 data = pe__compare_fencing_digest(match, agent, node,
match            1289 lib/pengine/pe_actions.c                                "%s changed", pcmk__node_name(node), match->id);
match            1296 lib/pengine/pe_actions.c                                   pcmk__node_name(node), match->id);
match            1301 lib/pengine/pe_actions.c                                match->id, ":", agent, ":",
match            1304 lib/pengine/pe_actions.c                                match->id, ":", agent, ":",
match             465 lib/pengine/status.c         pcmk_resource_t *match = parent->priv->fns->find_rsc(parent, id, NULL,
match             468 lib/pengine/status.c         if (match != NULL) {
match             469 lib/pengine/status.c             return match;
match             490 lib/pengine/status.c     pcmk_node_t *match = NULL;
match             493 lib/pengine/status.c         match = pe_find_node_id(nodes, id);
match             495 lib/pengine/status.c     if ((match == NULL) && (uname != NULL)) {
match             496 lib/pengine/status.c         match = pcmk__find_node_in_list(nodes, uname);
match             498 lib/pengine/status.c     return match;
match             329 lib/pengine/utils.c     pcmk_node_t *match = NULL;
match             350 lib/pengine/utils.c     match = g_hash_table_lookup(rsc->priv->allowed_nodes, node->priv->id);
match             351 lib/pengine/utils.c     if (match == NULL) {
match             352 lib/pengine/utils.c         match = pe__copy_node(node);
match             354 lib/pengine/utils.c                             (gpointer) match->priv->id, match);
match             356 lib/pengine/utils.c     match->assign->score = pcmk__add_scores(match->assign->score, score);
match             361 lib/pengine/utils.c                     pcmk_readable_score(match->assign->score));
match             582 lib/services/systemd.c         const char *match = NULL;
match             604 lib/services/systemd.c         match = systemd_unit_extension(value.str);
match             605 lib/services/systemd.c         if (match == NULL) {
match             620 lib/services/systemd.c         if (!strcmp(match, ".service")) {
match             622 lib/services/systemd.c             unit_name = strndup(basename, match - basename);
match            1836 tools/crm_mon.c     xmlNode *match = NULL;
match            1843 tools/crm_mon.c         match = change->children;
match            1850 tools/crm_mon.c         match = pcmk__xe_first_child(change, PCMK_XE_CHANGE_RESULT, NULL, NULL);
match            1851 tools/crm_mon.c         if(match) {
match            1852 tools/crm_mon.c             match = match->children;
match            1856 tools/crm_mon.c     if(match) {
match            1857 tools/crm_mon.c         name = (const char *)match->name;
match            1860 tools/crm_mon.c     crm_trace("Handling %s operation for %s %p, %s", op, xpath, match, name);
match            1870 tools/crm_mon.c         pcmk__xe_foreach_child(pcmk__xe_first_child(match, PCMK_XE_STATUS, NULL,
match            1875 tools/crm_mon.c         pcmk__xe_foreach_child(match, NULL, handle_op_for_node, NULL);
match            1878 tools/crm_mon.c         node = crm_element_value(match, PCMK_XA_UNAME);
match            1880 tools/crm_mon.c             node = pcmk__xe_id(match);
match            1882 tools/crm_mon.c         handle_rsc_op(match, (void *) node);
match            1885 tools/crm_mon.c         node = pcmk__xe_id(match);
match            1886 tools/crm_mon.c         handle_rsc_op(match, (void *) node);
match            1891 tools/crm_mon.c         handle_rsc_op(match, local_node);
match            1897 tools/crm_mon.c         handle_rsc_op(match, local_node);
match            1903 tools/crm_mon.c         handle_rsc_op(match, local_node);
match            1907 tools/crm_mon.c         crm_trace("Ignoring %s operation for %s %p, %s", op, xpath, match, name);
match             276 tools/crm_resource.c         xmlNode *match = getXpathResult(xpathObj, ndx);
match             277 tools/crm_resource.c         retval = g_list_insert_sorted(retval, (gpointer) pcmk__xe_id(match),