Lines Matching defs:child
178 apr_xml_elem *child;
203 for (child = doc->root->first_child; child; child = child->next) {
204 if (strcmp(child->name, "locktype") == 0
205 && child->first_child
207 if (strcmp(child->first_child->name, "write") == 0) {
212 if (strcmp(child->name, "lockscope") == 0
213 && child->first_child
215 if (strcmp(child->first_child->name, "exclusive") == 0)
217 else if (strcmp(child->first_child->name, "shared") == 0)
223 if (strcmp(child->name, "owner") == 0 && lock->owner == NULL) {
227 apr_xml_quote_elem(p, child);
233 apr_xml_to_text(p, child, APR_XML_X2T_FULL_NS_LANG, doc->namespaces,
246 child->name));