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              87 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             169 lib/common/patchset.c     for (cIter = pcmk__xml_first_child(xml); cIter != NULL;
cIter             170 lib/common/patchset.c          cIter = pcmk__xml_next(cIter)) {
cIter             171 lib/common/patchset.c         add_xml_changes_to_patchset(cIter, patchset);
cIter             647 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             684 lib/common/patchset.c     cIter = pcmk__xml_first_child(target);
cIter             685 lib/common/patchset.c     while (cIter) {
cIter             686 lib/common/patchset.c         xmlNode *target_child = cIter;
cIter             688 lib/common/patchset.c         cIter = pcmk__xml_next(cIter);
cIter             985 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             987 lib/common/patchset.c     for (cIter = pcmk__xml_first_child(parent); cIter != NULL;
cIter             988 lib/common/patchset.c          cIter = pcmk__xml_next(cIter)) {
cIter             989 lib/common/patchset.c         if (strcmp((const char *) cIter->name, name) != 0) {
cIter             992 lib/common/patchset.c             const char *cid = ID(cIter);
cIter            1000 lib/common/patchset.c         if ((cIter->type == XML_COMMENT_NODE)
cIter            1002 lib/common/patchset.c             && (pcmk__xml_position(cIter, pcmk__xf_skip) != position)) {
cIter            1006 lib/common/patchset.c         return cIter;
cIter             140 lib/common/xml.c     xmlNode *cIter = NULL;
cIter             147 lib/common/xml.c     for (cIter = pcmk__xml_first_child(xml); cIter != NULL;
cIter             148 lib/common/xml.c          cIter = pcmk__xml_next(cIter)) {
cIter             149 lib/common/xml.c         reset_xml_node_flags(cIter);
cIter             157 lib/common/xml.c     xmlNode *cIter = NULL;
cIter             165 lib/common/xml.c         for (cIter = pcmk__xml_first_child(xml); cIter != NULL;
cIter             166 lib/common/xml.c              cIter = pcmk__xml_next(cIter)) {
cIter             167 lib/common/xml.c             pcmk__mark_xml_created(cIter);
cIter             317 lib/common/xml.c     xmlNode *cIter = NULL;
cIter             319 lib/common/xml.c     for(cIter = xml; cIter->prev; cIter = cIter->prev) {
cIter             320 lib/common/xml.c         xml_private_t *p = ((xmlNode*)cIter->prev)->_private;
cIter             354 lib/common/xml.c     for (xmlNodePtr cIter = pcmk__xml_first_child(xml); cIter != NULL;
cIter             355 lib/common/xml.c          cIter = pcmk__xml_next(cIter)) {
cIter             356 lib/common/xml.c         accept_attr_deletions(cIter);
cIter            2306 lib/common/xml.c     xmlNode *cIter = NULL;
cIter            2328 lib/common/xml.c     for (cIter = pcmk__xml_first_child(old_xml); cIter != NULL; ) {
cIter            2329 lib/common/xml.c         xmlNode *old_child = cIter;
cIter            2330 lib/common/xml.c         xmlNode *new_child = pcmk__xml_match(new_xml, cIter, true);
cIter            2332 lib/common/xml.c         cIter = pcmk__xml_next(cIter);
cIter            2342 lib/common/xml.c     for (cIter = pcmk__xml_first_child(new_xml); cIter != NULL; ) {
cIter            2343 lib/common/xml.c         xmlNode *new_child = cIter;
cIter            2344 lib/common/xml.c         xmlNode *old_child = pcmk__xml_match(old_xml, cIter, true);
cIter            2346 lib/common/xml.c         cIter = pcmk__xml_next(cIter);
cIter            2389 lib/common/xml.c     xmlNode *cIter = NULL;
cIter            2407 lib/common/xml.c     cIter = pcmk__xml_first_child(xml_node);
cIter            2408 lib/common/xml.c     while (cIter) {
cIter            2409 lib/common/xml.c         xmlNode *child = cIter;
cIter            2411 lib/common/xml.c         cIter = pcmk__xml_next(cIter);
cIter            1835 tools/crm_mon.c         xmlNode *cIter;
cIter            1837 tools/crm_mon.c         for(cIter = xml->children; cIter; cIter = cIter->next) {
cIter            1838 tools/crm_mon.c             handle_rsc_op(cIter, node_id);