cIter             598 lib/common/acl.c     for (xmlNode *cIter = pcmk__xml_first_child(xml); cIter != NULL; ) {
cIter             599 lib/common/acl.c         xmlNode *child = cIter;
cIter             600 lib/common/acl.c         cIter = pcmk__xml_next(cIter); /* In case it is free'd */
cIter              35 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             123 lib/common/patchset.c     for (cIter = pcmk__xml_first_child(xml); cIter != NULL;
cIter             124 lib/common/patchset.c          cIter = pcmk__xml_next(cIter)) {
cIter             125 lib/common/patchset.c         add_xml_changes_to_patchset(cIter, patchset);
cIter             430 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             432 lib/common/patchset.c     for (cIter = pcmk__xml_first_child(parent); cIter != NULL;
cIter             433 lib/common/patchset.c          cIter = pcmk__xml_next(cIter)) {
cIter             434 lib/common/patchset.c         if (strcmp((const char *) cIter->name, name) != 0) {
cIter             437 lib/common/patchset.c             const char *cid = pcmk__xe_id(cIter);
cIter             445 lib/common/patchset.c         if ((cIter->type == XML_COMMENT_NODE)
cIter             447 lib/common/patchset.c             && (pcmk__xml_position(cIter, pcmk__xf_skip) != position)) {
cIter             451 lib/common/patchset.c         return cIter;
cIter             389 lib/common/xml.c     for (const xmlNode *cIter = xml; cIter->prev; cIter = cIter->prev) {
cIter             390 lib/common/xml.c         xml_node_private_t *nodepriv = ((xmlNode*)cIter->prev)->_private;