Lines Matching defs:doc
2243 xmlDocPtr doc;
2246 doc = xmlNewDoc((xmlChar *)"1.0");
2247 if (doc != NULL) {
2250 (void) xmlDocSetRootElement(doc, root);
2252 return (doc);
2256 * show_group_xml(doc, group)
2258 * Copy the group info into the XML doc.
2262 show_group_xml(xmlDocPtr doc, sa_group_t group)
2267 root = xmlDocGetRootElement(doc);
2295 xmlDocPtr doc;
2353 doc = show_group_xml_init();
2354 if (doc == NULL)
2368 show_group_xml(doc, group);
2379 show_group_xml(doc, group);
2391 (void) xmlDocFormatDump(stdout, doc, 1);
2392 xmlFreeDoc(doc);