cIter             601 lib/common/acl.c     for (xmlNode *cIter = pcmk__xml_first_child(xml); cIter != NULL; ) {
cIter             602 lib/common/acl.c         xmlNode *child = cIter;
cIter             603 lib/common/acl.c         cIter = pcmk__xml_next(cIter); /* In case it is free'd */
cIter              34 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             122 lib/common/patchset.c     for (cIter = pcmk__xml_first_child(xml); cIter != NULL;
cIter             123 lib/common/patchset.c          cIter = pcmk__xml_next(cIter)) {
cIter             124 lib/common/patchset.c         add_xml_changes_to_patchset(cIter, patchset);
cIter             632 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             667 lib/common/patchset.c     cIter = pcmk__xml_first_child(target);
cIter             668 lib/common/patchset.c     while (cIter) {
cIter             669 lib/common/patchset.c         xmlNode *target_child = cIter;
cIter             671 lib/common/patchset.c         cIter = pcmk__xml_next(cIter);
cIter             988 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             990 lib/common/patchset.c     for (cIter = pcmk__xml_first_child(parent); cIter != NULL;
cIter             991 lib/common/patchset.c          cIter = pcmk__xml_next(cIter)) {
cIter             992 lib/common/patchset.c         if (strcmp((const char *) cIter->name, name) != 0) {
cIter             995 lib/common/patchset.c             const char *cid = pcmk__xe_id(cIter);
cIter            1003 lib/common/patchset.c         if ((cIter->type == XML_COMMENT_NODE)
cIter            1005 lib/common/patchset.c             && (pcmk__xml_position(cIter, pcmk__xf_skip) != position)) {
cIter            1009 lib/common/patchset.c         return cIter;
cIter            1395 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter            1419 lib/common/patchset.c     cIter = pcmk__xml_first_child(node);
cIter            1420 lib/common/patchset.c     while (cIter) {
cIter            1421 lib/common/patchset.c         xmlNode *child = cIter;
cIter            1423 lib/common/patchset.c         cIter = pcmk__xml_next(cIter);
cIter             387 lib/common/xml.c     for (const xmlNode *cIter = xml; cIter->prev; cIter = cIter->prev) {
cIter             388 lib/common/xml.c         xml_node_private_t *nodepriv = ((xmlNode*)cIter->prev)->_private;