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

Function xmlHashScan

ThirdParty/libxml2/vtklibxml2/hash.c:993–999  ·  view source on GitHub ↗

* xmlHashScan: * @hash: hash table * @scan: scanner function for items in the hash * @data: extra data passed to @scan * * Scan the hash @table and apply @scan to each value. */

Source from the content-addressed store, hash-verified

991 * Scan the hash @table and apply @scan to each value.
992 */
993void
994xmlHashScan(xmlHashTablePtr hash, xmlHashScanner scan, void *data) {
995 stubData sdata;
996 sdata.data = data;
997 sdata.scan = scan;
998 xmlHashScanFull(hash, stubHashScannerFull, &sdata);
999}
1000
1001/**
1002 * xmlHashScanFull:

Callers 15

xmlConvertSGMLCatalogFunction · 0.85
xmlACatalogDumpFunction · 0.85
xmlDumpElementTableFunction · 0.85
xmlDumpAttributeTableFunction · 0.85
xmlValidateDocumentFinalFunction · 0.85
xmlValidateDtdFinalFunction · 0.85
xmlDumpEntitiesTableFunction · 0.85
xmlSchemaDumpFunction · 0.85
xmlSchemaValidateElemFunction · 0.85
xmlSchemaPreRunFunction · 0.85
xmlBufDumpNotationTableFunction · 0.85

Calls 1

xmlHashScanFullFunction · 0.85

Tested by

no test coverage detected