MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlDebugDumpOneNode

Function xmlDebugDumpOneNode

ThirdParty/libxml2/vtklibxml2/debugXML.c:1422–1433  ·  view source on GitHub ↗

* xmlDebugDumpOneNode: * @output: the FILE * for the output * @node: the node * @depth: the indentation level. * * Dumps debug information for the element node, it is not recursive */

Source from the content-addressed store, hash-verified

1420 * Dumps debug information for the element node, it is not recursive
1421 */
1422void
1423xmlDebugDumpOneNode(FILE * output, xmlNodePtr node, int depth)
1424{
1425 xmlDebugCtxt ctxt;
1426
1427 if (output == NULL) return;
1428 xmlCtxtDumpInitCtxt(&ctxt);
1429 ctxt.output = output;
1430 ctxt.depth = depth;
1431 xmlCtxtDumpOneNode(&ctxt, node);
1432 xmlCtxtDumpCleanCtxt(&ctxt);
1433}
1434
1435/**
1436 * xmlDebugDumpNode:

Callers 3

xmlXPathDebugDumpNodeFunction · 0.85
xmlShellDirFunction · 0.85

Calls 3

xmlCtxtDumpInitCtxtFunction · 0.85
xmlCtxtDumpOneNodeFunction · 0.85
xmlCtxtDumpCleanCtxtFunction · 0.85

Tested by

no test coverage detected