test_xml           20 lib/common/tests/acl/xml_acl_denied_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml           21 lib/common/tests/acl/xml_acl_denied_test.c     assert_false(xml_acl_denied(test_xml));
test_xml           23 lib/common/tests/acl/xml_acl_denied_test.c     test_xml->doc->_private = NULL;
test_xml           24 lib/common/tests/acl/xml_acl_denied_test.c     assert_false(xml_acl_denied(test_xml));
test_xml           26 lib/common/tests/acl/xml_acl_denied_test.c     test_xml->doc = NULL;
test_xml           27 lib/common/tests/acl/xml_acl_denied_test.c     assert_false(xml_acl_denied(test_xml));
test_xml           29 lib/common/tests/acl/xml_acl_denied_test.c     test_xml = NULL;
test_xml           30 lib/common/tests/acl/xml_acl_denied_test.c     assert_false(xml_acl_denied(test_xml));
test_xml           38 lib/common/tests/acl/xml_acl_denied_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml           41 lib/common/tests/acl/xml_acl_denied_test.c     test_xml->doc->_private = calloc(1, sizeof(xml_doc_private_t));
test_xml           43 lib/common/tests/acl/xml_acl_denied_test.c     assert_false(xml_acl_denied(test_xml));
test_xml           46 lib/common/tests/acl/xml_acl_denied_test.c     docpriv = test_xml->doc->_private;
test_xml           51 lib/common/tests/acl/xml_acl_denied_test.c     assert_false(xml_acl_denied(test_xml));
test_xml           56 lib/common/tests/acl/xml_acl_denied_test.c     assert_true(xml_acl_denied(test_xml));
test_xml           20 lib/common/tests/acl/xml_acl_enabled_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml           21 lib/common/tests/acl/xml_acl_enabled_test.c     assert_false(xml_acl_enabled(test_xml));
test_xml           23 lib/common/tests/acl/xml_acl_enabled_test.c     test_xml->doc->_private = NULL;
test_xml           24 lib/common/tests/acl/xml_acl_enabled_test.c     assert_false(xml_acl_enabled(test_xml));
test_xml           26 lib/common/tests/acl/xml_acl_enabled_test.c     test_xml->doc = NULL;
test_xml           27 lib/common/tests/acl/xml_acl_enabled_test.c     assert_false(xml_acl_enabled(test_xml));
test_xml           29 lib/common/tests/acl/xml_acl_enabled_test.c     test_xml = NULL;
test_xml           30 lib/common/tests/acl/xml_acl_enabled_test.c     assert_false(xml_acl_enabled(test_xml));
test_xml           38 lib/common/tests/acl/xml_acl_enabled_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml           41 lib/common/tests/acl/xml_acl_enabled_test.c     test_xml->doc->_private = calloc(1, sizeof(xml_doc_private_t));
test_xml           43 lib/common/tests/acl/xml_acl_enabled_test.c     assert_false(xml_acl_enabled(test_xml));
test_xml           46 lib/common/tests/acl/xml_acl_enabled_test.c     docpriv = test_xml->doc->_private;
test_xml           51 lib/common/tests/acl/xml_acl_enabled_test.c     assert_false(xml_acl_enabled(test_xml));
test_xml           56 lib/common/tests/acl/xml_acl_enabled_test.c     assert_true(xml_acl_enabled(test_xml));
test_xml           20 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml           21 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5");
test_xml           22 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X++");
test_xml           23 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml           31 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml           32 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5");
test_xml           33 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X+=2");
test_xml           34 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml           45 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml           46 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5");
test_xml           48 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml           56 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml           57 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5");
test_xml           58 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, NULL, "X++");
test_xml           59 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml           67 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml           68 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5");
test_xml           69 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", NULL);
test_xml           70 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml           80 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml           81 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5");
test_xml           82 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "Y++");
test_xml           83 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml           91 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml           92 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5");
test_xml           93 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "2");
test_xml           94 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml          104 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml          105 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", NULL);
test_xml          106 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X++");
test_xml          107 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml          115 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml          116 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "hello");
test_xml          117 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X++");
test_xml          118 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml          126 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml          127 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "hello");
test_xml          128 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X+=2");
test_xml          129 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml          137 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml          138 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5.01");
test_xml          139 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X++");
test_xml          140 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml          148 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml          149 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5.50");
test_xml          150 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X++");
test_xml          151 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml          159 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml          160 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5.99");
test_xml          161 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X++");
test_xml          162 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml          170 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml          171 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5");
test_xml          172 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X+=hello");
test_xml          173 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml          181 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml          182 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5");
test_xml          183 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X+=2.01");
test_xml          184 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml          192 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml          193 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5");
test_xml          194 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X+=1.50");
test_xml          195 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml          203 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml          204 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5");
test_xml          205 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X+=1.99");
test_xml          206 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml          216 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml          217 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "Y", "5");
test_xml          218 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X++");
test_xml          219 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");
test_xml          229 lib/common/tests/operations/expand_plus_plus_test.c     xmlNode *test_xml = create_xml_node(NULL, "test_xml");
test_xml          230 lib/common/tests/operations/expand_plus_plus_test.c     crm_xml_add(test_xml, "X", "5");
test_xml          231 lib/common/tests/operations/expand_plus_plus_test.c     expand_plus_plus(test_xml, "X", "X+=100000000000");
test_xml          232 lib/common/tests/operations/expand_plus_plus_test.c     new_value = crm_element_value(test_xml, "X");