MCPcopy Create free account
hub / github.com/ClusterLabs/pacemaker / __xml_next

Function __xml_next

include/crm/common/xml.h:223–233  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

221}
222
223static inline xmlNode *
224__xml_next(xmlNode * child)
225{
226 if (child) {
227 child = child->next;
228 while (child && child->type != XML_ELEMENT_NODE) {
229 child = child->next;
230 }
231 }
232 return child;
233}
234
235void free_xml(xmlNode * child);
236

Callers 15

print_cts_constraintsFunction · 0.85
print_cts_rscFunction · 0.85
find_resource_attrFunction · 0.85
print_rsc_historyFunction · 0.85
print_node_summaryFunction · 0.85
print_statusFunction · 0.85
create_opFunction · 0.85
do_find_node_listFunction · 0.85
dump_data_elementFunction · 0.85
print_xml_diffFunction · 0.85
node_mcp_dispatchFunction · 0.85

Calls

no outgoing calls

Tested by 2

test_rulesetFunction · 0.68
test_ruleFunction · 0.68