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, xpf_acl_read);
acls              191 lib/common/acl.c             acls = create_acl(child, acls, xpf_acl_write);
acls              194 lib/common/acl.c             acls = create_acl(child, acls, xpf_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              309 lib/common/acl.c         if (acls) {
acls              312 lib/common/acl.c             for (child = pcmk__xe_first_child(acls); child;
acls              322 lib/common/acl.c                         p->acls = parse_acl_entry(acls, child, p->acls);
acls              428 lib/common/acl.c     for(aIter = doc->acls; aIter != NULL && target; aIter = aIter->next) {
acls              462 lib/common/acl.c     if (doc->acls) {
acls              463 lib/common/acl.c         g_list_free_full(doc->acls, free_acl);
acls              464 lib/common/acl.c         doc->acls = NULL;
acls              619 lib/common/acl.c         if (docp->acls == NULL) {
acls               65 lib/common/crmcommon_private.h         GList *acls;
acls              123 lib/common/crmcommon_private.h void pcmk__free_acls(GList *acls);
acls              209 lib/common/xml.c         if(p->acls) {
acls              210 lib/common/xml.c             pcmk__free_acls(p->acls);
acls              211 lib/common/xml.c             p->acls = NULL;