Lines Matching refs:cmd
4270 for (const xmlNode *cmd = rootnode->children; cmd; cmd = cmd->next) { in mod_webdav_propfind() local
4271 if (0 == webdav_xmlstrcmp_fixed(cmd->name, "allprop")) in mod_webdav_propfind()
4273 else if (0 == webdav_xmlstrcmp_fixed(cmd->name, "propname")) in mod_webdav_propfind()
4275 else if (0 != webdav_xmlstrcmp_fixed(cmd->name, "prop") in mod_webdav_propfind()
4276 && 0 != webdav_xmlstrcmp_fixed(cmd->name, "include")) in mod_webdav_propfind()
4280 for (const xmlNode *prop = cmd->children; prop; prop = prop->next) { in mod_webdav_propfind()
4325 if (cmd->name[0] == 'p') { /* "prop", not "include" */ in mod_webdav_propfind()
4335 if (cmd->name[0] == 'i') /* allprop "include", not "prop" */ in mod_webdav_propfind()
5491 for (const xmlNode *cmd = rootnode->children; cmd; cmd = cmd->next) { in mod_webdav_proppatch() local
5492 if (!(update = (0 == webdav_xmlstrcmp_fixed(cmd->name, "set")))) { in mod_webdav_proppatch()
5493 if (0 != webdav_xmlstrcmp_fixed(cmd->name, "remove")) in mod_webdav_proppatch()
5497 for (const xmlNode *props = cmd->children; props; props = props->next) { in mod_webdav_proppatch()