* xmlValidateCheckRefCallback: * @ref_list: List of references * @ctxt: Validation context * @name: Name of ID we are searching for * */
| 6377 | * |
| 6378 | */ |
| 6379 | static void |
| 6380 | xmlValidateCheckRefCallback(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: |
nothing calls this directly
no test coverage detected