Home | History | Annotate | Download | only in src

Lines Matching refs:fsuse

4936 	struct cil_fsuse *fsuse = NULL;
4950 cil_fsuse_init(&fsuse);
4953 fsuse->type = CIL_FSUSE_XATTR;
4955 fsuse->type = CIL_FSUSE_TASK;
4957 fsuse->type = CIL_FSUSE_TRANS;
4959 cil_log(CIL_ERR, "Invalid fsuse type\n");
4963 fsuse->fs_str = parse_current->next->next->data;
4966 fsuse->context_str = parse_current->next->next->next->data;
4968 cil_context_init(&fsuse->context);
4970 rc = cil_fill_context(parse_current->next->next->next->cl_head, fsuse->context);
4976 ast_node->data = fsuse;
4982 cil_log(CIL_ERR, "Bad fsuse declaration at line %d of %s\n",
4984 cil_destroy_fsuse(fsuse);
4988 void cil_destroy_fsuse(struct cil_fsuse *fsuse)
4990 if (fsuse == NULL) {
4994 if (fsuse->context_str == NULL && fsuse->context != NULL) {
4995 cil_destroy_context(fsuse->context);
4998 free(fsuse);