acls               46 lib/common/acl.c pcmk__free_acls(GList *acls)
acls               48 lib/common/acl.c     g_list_free_full(acls, free_acl);
acls               52 lib/common/acl.c create_acl(xmlNode *xml, GList *acls, enum xml_private_flags mode)
acls              133 lib/common/acl.c     return g_list_append(acls, acl);
acls              147 lib/common/acl.c parse_acl_entry(xmlNode *acl_top, xmlNode *acl_entry, GList *acls)
acls              180 lib/common/acl.c                             acls = parse_acl_entry(acl_top, role, acls);
acls              188 lib/common/acl.c             acls = create_acl(child, acls, pcmk__xf_acl_read);
acls              191 lib/common/acl.c             acls = create_acl(child, acls, pcmk__xf_acl_write);
acls              194 lib/common/acl.c             acls = create_acl(child, acls, pcmk__xf_acl_deny);
acls              202 lib/common/acl.c     return acls;
acls              255 lib/common/acl.c     for (aIter = p->acls; aIter != NULL; aIter = aIter->next) {
acls              302 lib/common/acl.c     } else if (p->acls == NULL) {
acls              303 lib/common/acl.c         xmlNode *acls = get_xpath_object("//" XML_CIB_TAG_ACLS,
acls              308 lib/common/acl.c         if (acls) {
acls              311 lib/common/acl.c             for (child = pcmk__xe_first_child(acls); child;
acls              321 lib/common/acl.c                         p->acls = parse_acl_entry(acls, child, p->acls);
acls              440 lib/common/acl.c     for(aIter = doc->acls; aIter != NULL && target; aIter = aIter->next) {
acls              474 lib/common/acl.c     if (doc->acls) {
acls              475 lib/common/acl.c         g_list_free_full(doc->acls, free_acl);
acls              476 lib/common/acl.c         doc->acls = NULL;
acls              631 lib/common/acl.c         if (docp->acls == NULL) {
acls               39 lib/common/crmcommon_private.h         GList *acls;
acls               94 lib/common/crmcommon_private.h void pcmk__free_acls(GList *acls);
acls              208 lib/common/xml.c         if(p->acls) {
acls              209 lib/common/xml.c             pcmk__free_acls(p->acls);
acls              210 lib/common/xml.c             p->acls = NULL;