cIter             247 crmd/te_callbacks.c     xmlNode *cIter = NULL;
cIter             262 crmd/te_callbacks.c     for(cIter = xml->children; cIter; cIter = cIter->next) {
cIter             199 lib/common/xml.c     xmlNode *cIter = NULL;
cIter             206 lib/common/xml.c     for (cIter = __xml_first_child(xml); cIter != NULL; cIter = __xml_next(cIter)) {
cIter             207 lib/common/xml.c         __xml_node_clean(cIter);
cIter             214 lib/common/xml.c     xmlNode *cIter = NULL;
cIter             223 lib/common/xml.c         for (cIter = __xml_first_child(xml); cIter != NULL; cIter = __xml_next(cIter)) {
cIter             224 lib/common/xml.c            crm_node_created(cIter);
cIter             778 lib/common/xml.c     xmlNode *cIter = __xml_first_child(xml);
cIter             814 lib/common/xml.c     while (cIter != NULL) {
cIter             815 lib/common/xml.c         xmlNode *child = cIter;
cIter             816 lib/common/xml.c         cIter = __xml_next(cIter); /* In case it is free'd */
cIter             944 lib/common/xml.c     xmlNode *cIter = NULL;
cIter             946 lib/common/xml.c     for(cIter = xml; cIter->prev; cIter = cIter->prev) {
cIter             947 lib/common/xml.c         xml_private_t *p = ((xmlNode*)cIter->prev)->_private;
cIter             960 lib/common/xml.c     xmlNode *cIter = NULL;
cIter             962 lib/common/xml.c     for(cIter = xml; cIter->prev; cIter = cIter->prev) {
cIter             963 lib/common/xml.c         xml_private_t *p = ((xmlNode*)cIter->prev)->_private;
cIter             976 lib/common/xml.c     xmlNode *cIter = NULL;
cIter            1051 lib/common/xml.c     for (cIter = __xml_first_child(xml); cIter != NULL; cIter = __xml_next(cIter)) {
cIter            1052 lib/common/xml.c         __xml_build_changes(cIter, patchset);
cIter            1074 lib/common/xml.c     xmlNode *cIter = NULL;
cIter            1095 lib/common/xml.c     for (cIter = __xml_first_child(xml); cIter != NULL; cIter = __xml_next(cIter)) {
cIter            1096 lib/common/xml.c         __xml_accept_changes(cIter);
cIter            1611 lib/common/xml.c     xmlNode *cIter = NULL;
cIter            1653 lib/common/xml.c     cIter = __xml_first_child(target);
cIter            1654 lib/common/xml.c     while (cIter) {
cIter            1655 lib/common/xml.c         xmlNode *target_child = cIter;
cIter            1657 lib/common/xml.c         cIter = __xml_next(cIter);
cIter            1924 lib/common/xml.c     xmlNode *cIter = NULL;
cIter            1926 lib/common/xml.c     for (cIter = __xml_first_child(parent); cIter != NULL; cIter = __xml_next(cIter)) {
cIter            1927 lib/common/xml.c         if(strcmp((const char *)cIter->name, name) != 0) {
cIter            1930 lib/common/xml.c             const char *cid = ID(cIter);
cIter            1937 lib/common/xml.c         if (cIter->type == XML_COMMENT_NODE
cIter            1939 lib/common/xml.c             && __xml_offset(cIter) != position) {
cIter            1943 lib/common/xml.c         return cIter;
cIter            4020 lib/common/xml.c     xmlNode *cIter = NULL;
cIter            4126 lib/common/xml.c     for (cIter = __xml_first_child(old); cIter != NULL; ) {
cIter            4127 lib/common/xml.c         xmlNode *old_child = cIter;
cIter            4128 lib/common/xml.c         xmlNode *new_child = find_element(new, cIter, TRUE);
cIter            4130 lib/common/xml.c         cIter = __xml_next(cIter);
cIter            4152 lib/common/xml.c     for (cIter = __xml_first_child(new); cIter != NULL; ) {
cIter            4153 lib/common/xml.c         xmlNode *new_child = cIter;
cIter            4154 lib/common/xml.c         xmlNode *old_child = find_element(old, cIter, TRUE);
cIter            4156 lib/common/xml.c         cIter = __xml_next(cIter);
cIter            4230 lib/common/xml.c     xmlNode *cIter = NULL;
cIter            4251 lib/common/xml.c     cIter = __xml_first_child(xml_node);
cIter            4252 lib/common/xml.c     while (cIter) {
cIter            4253 lib/common/xml.c         xmlNode *child = cIter;
cIter            4255 lib/common/xml.c         cIter = __xml_next(cIter);
cIter            3813 tools/crm_mon.c         xmlNode *cIter;
cIter            3815 tools/crm_mon.c         for(cIter = xml->children; cIter; cIter = cIter->next) {
cIter            3816 tools/crm_mon.c             handle_rsc_op(cIter, node_id);