cib_node          781 lib/common/patchset.c     xmlNode *cib_node;
cib_node          788 lib/common/patchset.c             cib_node = find_xml_node(*patch_node, "cib", FALSE);
cib_node          789 lib/common/patchset.c             if (cib_node != NULL) {
cib_node          790 lib/common/patchset.c                 *patch_node = cib_node;
cib_node           52 lib/pacemaker/pcmk_sched_transition.c inject_transient_attr(xmlNode * cib_node, const char *name, const char *value)
cib_node           57 lib/pacemaker/pcmk_sched_transition.c     const char *node_uuid = ID(cib_node);
cib_node           59 lib/pacemaker/pcmk_sched_transition.c     node_path = xmlGetNodePath(cib_node);
cib_node           61 lib/pacemaker/pcmk_sched_transition.c               name, value, node_path, ID(cib_node));
cib_node           64 lib/pacemaker/pcmk_sched_transition.c     attrs = first_named_child(cib_node, XML_TAG_TRANSIENT_NODEATTRS);
cib_node           66 lib/pacemaker/pcmk_sched_transition.c         attrs = create_xml_node(cib_node, XML_TAG_TRANSIENT_NODEATTRS);
cib_node           80 lib/pacemaker/pcmk_sched_transition.c update_failcounts(xmlNode * cib_node, const char *resource, const char *task,
cib_node           94 lib/pacemaker/pcmk_sched_transition.c         inject_transient_attr(cib_node, name, "value++");
cib_node           98 lib/pacemaker/pcmk_sched_transition.c         inject_transient_attr(cib_node, name, now);
cib_node          218 lib/pacemaker/pcmk_sched_transition.c     xmlNode *cib_node = inject_node_state(cib_conn, node, NULL);
cib_node          221 lib/pacemaker/pcmk_sched_transition.c         crm_xml_add(cib_node, XML_NODE_IN_CLUSTER, XML_BOOLEAN_YES);
cib_node          222 lib/pacemaker/pcmk_sched_transition.c         crm_xml_add(cib_node, XML_NODE_IS_PEER, ONLINESTATUS);
cib_node          223 lib/pacemaker/pcmk_sched_transition.c         crm_xml_add(cib_node, XML_NODE_JOIN_STATE, CRMD_JOINSTATE_MEMBER);
cib_node          224 lib/pacemaker/pcmk_sched_transition.c         crm_xml_add(cib_node, XML_NODE_EXPECTED, CRMD_JOINSTATE_MEMBER);
cib_node          227 lib/pacemaker/pcmk_sched_transition.c         crm_xml_add(cib_node, XML_NODE_IN_CLUSTER, XML_BOOLEAN_NO);
cib_node          228 lib/pacemaker/pcmk_sched_transition.c         crm_xml_add(cib_node, XML_NODE_IS_PEER, OFFLINESTATUS);
cib_node          229 lib/pacemaker/pcmk_sched_transition.c         crm_xml_add(cib_node, XML_NODE_JOIN_STATE, CRMD_JOINSTATE_DOWN);
cib_node          230 lib/pacemaker/pcmk_sched_transition.c         crm_xml_add(cib_node, XML_NODE_EXPECTED, CRMD_JOINSTATE_DOWN);
cib_node          233 lib/pacemaker/pcmk_sched_transition.c     crm_xml_add(cib_node, XML_ATTR_ORIGIN, crm_system_name);
cib_node          234 lib/pacemaker/pcmk_sched_transition.c     return cib_node;
cib_node          238 lib/pacemaker/pcmk_sched_transition.c find_resource_xml(xmlNode * cib_node, const char *resource)
cib_node          241 lib/pacemaker/pcmk_sched_transition.c     const char *node = crm_element_value(cib_node, XML_ATTR_UNAME);
cib_node          244 lib/pacemaker/pcmk_sched_transition.c     match = get_xpath_object(xpath, cib_node, LOG_TRACE);
cib_node          251 lib/pacemaker/pcmk_sched_transition.c inject_resource(xmlNode * cib_node, const char *resource, const char *lrm_name,
cib_node          259 lib/pacemaker/pcmk_sched_transition.c     cib_resource = find_resource_xml(cib_node, resource);
cib_node          269 lib/pacemaker/pcmk_sched_transition.c         cib_resource = find_resource_xml(cib_node, lrm_name);
cib_node          279 lib/pacemaker/pcmk_sched_transition.c                 "  Please supply the class and type to continue\n", resource, ID(cib_node));
cib_node          294 lib/pacemaker/pcmk_sched_transition.c     xpath = (char *)xmlGetNodePath(cib_node);
cib_node          295 lib/pacemaker/pcmk_sched_transition.c     crm_info("Injecting new resource %s into %s '%s'", lrm_name, xpath, ID(cib_node));
cib_node          298 lib/pacemaker/pcmk_sched_transition.c     lrm = first_named_child(cib_node, XML_CIB_TAG_LRM);
cib_node          300 lib/pacemaker/pcmk_sched_transition.c         const char *node_uuid = ID(cib_node);
cib_node          302 lib/pacemaker/pcmk_sched_transition.c         lrm = create_xml_node(cib_node, XML_CIB_TAG_LRM);
cib_node          413 lib/pacemaker/pcmk_sched_transition.c     xmlNode *cib_node = NULL;
cib_node          443 lib/pacemaker/pcmk_sched_transition.c         cib_node = modify_node(cib, node, TRUE);
cib_node          444 lib/pacemaker/pcmk_sched_transition.c         CRM_ASSERT(cib_node != NULL);
cib_node          446 lib/pacemaker/pcmk_sched_transition.c         rc = cib->cmds->modify(cib, XML_CIB_TAG_STATUS, cib_node,
cib_node          449 lib/pacemaker/pcmk_sched_transition.c         free_xml(cib_node);
cib_node          457 lib/pacemaker/pcmk_sched_transition.c         cib_node = modify_node(cib, node, FALSE);
cib_node          458 lib/pacemaker/pcmk_sched_transition.c         CRM_ASSERT(cib_node != NULL);
cib_node          460 lib/pacemaker/pcmk_sched_transition.c         rc = cib->cmds->modify(cib, XML_CIB_TAG_STATUS, cib_node,
cib_node          463 lib/pacemaker/pcmk_sched_transition.c         free_xml(cib_node);
cib_node          480 lib/pacemaker/pcmk_sched_transition.c         cib_node = modify_node(cib, node, TRUE);
cib_node          481 lib/pacemaker/pcmk_sched_transition.c         crm_xml_add(cib_node, XML_NODE_IN_CLUSTER, XML_BOOLEAN_NO);
cib_node          482 lib/pacemaker/pcmk_sched_transition.c         CRM_ASSERT(cib_node != NULL);
cib_node          484 lib/pacemaker/pcmk_sched_transition.c         rc = cib->cmds->modify(cib, XML_CIB_TAG_STATUS, cib_node,
cib_node          487 lib/pacemaker/pcmk_sched_transition.c         free_xml(cib_node);
cib_node          570 lib/pacemaker/pcmk_sched_transition.c             cib_node = inject_node_state(cib, node, NULL);
cib_node          571 lib/pacemaker/pcmk_sched_transition.c             CRM_ASSERT(cib_node != NULL);
cib_node          573 lib/pacemaker/pcmk_sched_transition.c             update_failcounts(cib_node, resource, task, interval_ms, outcome);
cib_node          575 lib/pacemaker/pcmk_sched_transition.c             cib_resource = inject_resource(cib_node, resource, resource,
cib_node          586 lib/pacemaker/pcmk_sched_transition.c             rc = cib->cmds->modify(cib, XML_CIB_TAG_STATUS, cib_node,
cib_node          625 lib/pacemaker/pcmk_sched_transition.c     xmlNode *cib_node = NULL;
cib_node          675 lib/pacemaker/pcmk_sched_transition.c     cib_node = inject_node_state(fake_cib, node, (router_node? node : uuid));
cib_node          676 lib/pacemaker/pcmk_sched_transition.c     CRM_ASSERT(cib_node != NULL);
cib_node          678 lib/pacemaker/pcmk_sched_transition.c     cib_resource = inject_resource(cib_node, resource, lrm_name,
cib_node          683 lib/pacemaker/pcmk_sched_transition.c         free_xml(cib_node);
cib_node          731 lib/pacemaker/pcmk_sched_transition.c             update_failcounts(cib_node, match_name, op->op_type,
cib_node          740 lib/pacemaker/pcmk_sched_transition.c     rc = fake_cib->cmds->modify(fake_cib, XML_CIB_TAG_STATUS, cib_node,
cib_node          746 lib/pacemaker/pcmk_sched_transition.c     free_xml(cib_node);
cib_node          780 lib/pacemaker/pcmk_sched_transition.c         xmlNode *cib_node = modify_node(fake_cib, target, FALSE);
cib_node          782 lib/pacemaker/pcmk_sched_transition.c         crm_xml_add(cib_node, XML_ATTR_ORIGIN, __func__);
cib_node          783 lib/pacemaker/pcmk_sched_transition.c         CRM_ASSERT(cib_node != NULL);
cib_node          785 lib/pacemaker/pcmk_sched_transition.c         rc = fake_cib->cmds->replace(fake_cib, XML_CIB_TAG_STATUS, cib_node,
cib_node          798 lib/pacemaker/pcmk_sched_transition.c         free_xml(cib_node);