Home | History | Annotate | Download | only in libxml2

Lines Matching defs:incl

713  * @incl:  a include structure
718 xmlRelaxNGFreeInclude(xmlRelaxNGIncludePtr incl)
720 if (incl == NULL)
723 if (incl->href != NULL)
724 xmlFree(incl->href);
725 if (incl->doc != NULL)
726 xmlFreeDoc(incl->doc);
727 if (incl->schema != NULL)
728 xmlRelaxNGFree(incl->schema);
729 xmlFree(incl);
734 * @incl: a include structure list
739 xmlRelaxNGFreeIncludeList(xmlRelaxNGIncludePtr incl)
743 while (incl != NULL) {
744 next = incl->next;
745 xmlRelaxNGFreeInclude(incl);
746 incl = next;
4542 xmlRelaxNGIncludePtr incl;
4546 incl = node->psvi;
4547 if (incl == NULL) {
4552 root = xmlDocGetRootElement(incl->doc);
7114 xmlRelaxNGIncludePtr incl;
7153 incl = xmlRelaxNGLoadInclude(ctxt, URL, cur, ns);
7156 if (incl == NULL) {
7165 cur->psvi = incl;