Lines Matching defs:elem
1287 const apr_xml_elem *elem,
1300 if (elem->first_child == NULL) {
1318 for (child = elem->first_child; child != NULL; child = child->next) {
1355 const apr_xml_elem *elem,
1388 if (elem->first_child == NULL) {
1397 for (child = elem->first_child; child != NULL; child = child->next) {
1444 const apr_xml_elem *elem,
1468 if (elem->first_child == NULL) {
1482 for (child = elem->first_child; child != NULL; child = child->next) {
1612 const apr_xml_elem *elem;
1878 for (elem = doc->root->first_child; elem != NULL; elem = elem->next) {
1883 if (elem->ns == APR_XML_NS_DAV_ID) {
1884 if (strcmp(elem->name, "supported-method-set") == 0) {
1885 err = dav_gen_supported_methods(r, elem, methods, &body);
1888 else if (strcmp(elem->name, "supported-live-property-set") == 0) {
1889 err = dav_gen_supported_live_props(r, resource, elem, &body);
1892 else if (strcmp(elem->name, "supported-report-set") == 0) {
1893 err = dav_gen_supported_reports(r, resource, elem, vsn_hooks, &body);
1903 if ((err = (*vsn_hooks->get_option)(resource, elem, &body))
1929 const apr_xml_elem *elem;
1941 elem = dav_find_child(ctx->doc->root, "prop");
1942 for (elem = elem->first_child; elem; elem = elem->next) {
1944 apr_xml_empty_elem(ctx->w.pool, elem));