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

Function xmlValidateCheckRefCallback

ThirdParty/libxml2/vtklibxml2/valid.c:6379–6392  ·  view source on GitHub ↗

* xmlValidateCheckRefCallback: * @ref_list: List of references * @ctxt: Validation context * @name: Name of ID we are searching for * */

Source from the content-addressed store, hash-verified

6377 *
6378 */
6379static void
6380xmlValidateCheckRefCallback(void *payload, void *data, const xmlChar *name) {
6381 xmlListPtr ref_list = (xmlListPtr) payload;
6382 xmlValidCtxtPtr ctxt = (xmlValidCtxtPtr) data;
6383 xmlValidateMemo memo;
6384
6385 if (ref_list == NULL)
6386 return;
6387 memo.ctxt = ctxt;
6388 memo.name = name;
6389
6390 xmlListWalk(ref_list, xmlWalkValidateList, &memo);
6391
6392}
6393
6394/**
6395 * xmlValidateDocumentFinal:

Callers

nothing calls this directly

Calls 1

xmlListWalkFunction · 0.85

Tested by

no test coverage detected