cIter             572 lib/common/acl.c     for (xmlNode *cIter = pcmk__xml_first_child(xml); cIter != NULL; ) {
cIter             573 lib/common/acl.c         xmlNode *child = cIter;
cIter             574 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             646 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             691 lib/common/patchset.c     cIter = pcmk__xml_first_child(target);
cIter             692 lib/common/patchset.c     while (cIter) {
cIter             693 lib/common/patchset.c         xmlNode *target_child = cIter;
cIter             695 lib/common/patchset.c         cIter = pcmk__xml_next(cIter);
cIter             992 lib/common/patchset.c     xmlNode *cIter = NULL;
cIter             994 lib/common/patchset.c     for (cIter = pcmk__xml_first_child(parent); cIter != NULL;
cIter             995 lib/common/patchset.c          cIter = pcmk__xml_next(cIter)) {
cIter             996 lib/common/patchset.c         if (strcmp((const char *) cIter->name, name) != 0) {
cIter             999 lib/common/patchset.c             const char *cid = ID(cIter);
cIter            1007 lib/common/patchset.c         if ((cIter->type == XML_COMMENT_NODE)
cIter            1009 lib/common/patchset.c             && (pcmk__xml_position(cIter, xpf_skip) != position)) {
cIter            1013 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             335 lib/common/xml.c     xmlNode *cIter = NULL;
cIter             356 lib/common/xml.c     for (cIter = pcmk__xml_first_child(xml); cIter != NULL;
cIter             357 lib/common/xml.c          cIter = pcmk__xml_next(cIter)) {
cIter             358 lib/common/xml.c         accept_attr_deletions(cIter);
cIter            2290 lib/common/xml.c     xmlNode *cIter = NULL;
cIter            2312 lib/common/xml.c     for (cIter = pcmk__xml_first_child(old_xml); cIter != NULL; ) {
cIter            2313 lib/common/xml.c         xmlNode *old_child = cIter;
cIter            2314 lib/common/xml.c         xmlNode *new_child = pcmk__xml_match(new_xml, cIter, true);
cIter            2316 lib/common/xml.c         cIter = pcmk__xml_next(cIter);
cIter            2326 lib/common/xml.c     for (cIter = pcmk__xml_first_child(new_xml); cIter != NULL; ) {
cIter            2327 lib/common/xml.c         xmlNode *new_child = cIter;
cIter            2328 lib/common/xml.c         xmlNode *old_child = pcmk__xml_match(old_xml, cIter, true);
cIter            2330 lib/common/xml.c         cIter = pcmk__xml_next(cIter);
cIter            2373 lib/common/xml.c     xmlNode *cIter = NULL;
cIter            2392 lib/common/xml.c     cIter = pcmk__xml_first_child(xml_node);
cIter            2393 lib/common/xml.c     while (cIter) {
cIter            2394 lib/common/xml.c         xmlNode *child = cIter;
cIter            2396 lib/common/xml.c         cIter = pcmk__xml_next(cIter);
cIter            1642 tools/crm_mon.c         xmlNode *cIter;
cIter            1644 tools/crm_mon.c         for(cIter = xml->children; cIter; cIter = cIter->next) {
cIter            1645 tools/crm_mon.c             handle_rsc_op(cIter, node_id);