Home | History | Annotate | Download | only in src

Lines Matching refs:avrule

1795 			cil_log(CIL_ERR, "Failed to insert avrule into avtab at line %d of %s\n", node->line, node->path);
4229 avrule_t *avrule;
4231 avrule = cil_malloc(sizeof(avrule_t));
4232 avrule->specified = kind;
4233 avrule->flags = 0;
4234 __cil_init_sepol_type_set(&avrule->stypes);
4235 __cil_init_sepol_type_set(&avrule->ttypes);
4236 avrule->perms = NULL;
4237 avrule->line = node->line;
4238 avrule->source_filename = node->path;
4239 avrule->source_line = node->line;
4240 avrule->next = NULL;
4241 return avrule;
4316 static void __cil_print_rule(const char *pad, const char *kind, struct cil_avrule *avrule)
4319 cil_log(CIL_ERR,"%s %s ", DATUM(avrule->src)->fqn, DATUM(avrule->tgt)->fqn);
4321 if (!avrule->is_extended) {
4322 __cil_print_classperm(avrule->perms.classperms);
4325 __cil_print_permissionx(avrule->perms.x.permx);
4592 cil_log(CIL_ERR, "Failed to convert sepol avrule to CIL\n");