cIter             556 lib/common/acl.c     for (xmlNode *cIter = pcmk__xml_first_child(xml); cIter != NULL; ) {
cIter             557 lib/common/acl.c         xmlNode *child = cIter;
cIter             558 lib/common/acl.c         cIter = pcmk__xml_next(cIter); /* In case it is free'd */
cIter              88 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             170 lib/common/patchset.c     for (cIter = pcmk__xml_first_child(xml); cIter != NULL;
cIter             171 lib/common/patchset.c          cIter = pcmk__xml_next(cIter)) {
cIter             172 lib/common/patchset.c         add_xml_changes_to_patchset(cIter, patchset);
cIter             648 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             685 lib/common/patchset.c     cIter = pcmk__xml_first_child(target);
cIter             686 lib/common/patchset.c     while (cIter) {
cIter             687 lib/common/patchset.c         xmlNode *target_child = cIter;
cIter             689 lib/common/patchset.c         cIter = pcmk__xml_next(cIter);
cIter             986 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             988 lib/common/patchset.c     for (cIter = pcmk__xml_first_child(parent); cIter != NULL;
cIter             989 lib/common/patchset.c          cIter = pcmk__xml_next(cIter)) {
cIter             990 lib/common/patchset.c         if (strcmp((const char *) cIter->name, name) != 0) {
cIter             993 lib/common/patchset.c             const char *cid = ID(cIter);
cIter            1001 lib/common/patchset.c         if ((cIter->type == XML_COMMENT_NODE)
cIter            1003 lib/common/patchset.c             && (pcmk__xml_position(cIter, xpf_skip) != position)) {
cIter            1007 lib/common/patchset.c         return cIter;
cIter             141 lib/common/xml.c     xmlNode *cIter = NULL;
cIter             148 lib/common/xml.c     for (cIter = pcmk__xml_first_child(xml); cIter != NULL;
cIter             149 lib/common/xml.c          cIter = pcmk__xml_next(cIter)) {
cIter             150 lib/common/xml.c         reset_xml_node_flags(cIter);
cIter             158 lib/common/xml.c     xmlNode *cIter = NULL;
cIter             166 lib/common/xml.c         for (cIter = pcmk__xml_first_child(xml); cIter != NULL;
cIter             167 lib/common/xml.c              cIter = pcmk__xml_next(cIter)) {
cIter             168 lib/common/xml.c             pcmk__mark_xml_created(cIter);
cIter             318 lib/common/xml.c     xmlNode *cIter = NULL;
cIter             320 lib/common/xml.c     for(cIter = xml; cIter->prev; cIter = cIter->prev) {
cIter             321 lib/common/xml.c         xml_private_t *p = ((xmlNode*)cIter->prev)->_private;
cIter             355 lib/common/xml.c     for (xmlNodePtr cIter = pcmk__xml_first_child(xml); cIter != NULL;
cIter             356 lib/common/xml.c          cIter = pcmk__xml_next(cIter)) {
cIter             357 lib/common/xml.c         accept_attr_deletions(cIter);
cIter            2307 lib/common/xml.c     xmlNode *cIter = NULL;
cIter            2329 lib/common/xml.c     for (cIter = pcmk__xml_first_child(old_xml); cIter != NULL; ) {
cIter            2330 lib/common/xml.c         xmlNode *old_child = cIter;
cIter            2331 lib/common/xml.c         xmlNode *new_child = pcmk__xml_match(new_xml, cIter, true);
cIter            2333 lib/common/xml.c         cIter = pcmk__xml_next(cIter);
cIter            2343 lib/common/xml.c     for (cIter = pcmk__xml_first_child(new_xml); cIter != NULL; ) {
cIter            2344 lib/common/xml.c         xmlNode *new_child = cIter;
cIter            2345 lib/common/xml.c         xmlNode *old_child = pcmk__xml_match(old_xml, cIter, true);
cIter            2347 lib/common/xml.c         cIter = pcmk__xml_next(cIter);
cIter            2390 lib/common/xml.c     xmlNode *cIter = NULL;
cIter            2408 lib/common/xml.c     cIter = pcmk__xml_first_child(xml_node);
cIter            2409 lib/common/xml.c     while (cIter) {
cIter            2410 lib/common/xml.c         xmlNode *child = cIter;
cIter            2412 lib/common/xml.c         cIter = pcmk__xml_next(cIter);
cIter            1875 tools/crm_mon.c         xmlNode *cIter;
cIter            1877 tools/crm_mon.c         for(cIter = xml->children; cIter; cIter = cIter->next) {
cIter            1878 tools/crm_mon.c             handle_rsc_op(cIter, node_id);