Lines Matching defs:roletrans
1793 struct cil_roletransition *roletrans = NULL;
1805 cil_roletransition_init(&roletrans);
1807 roletrans->src_str = parse_current->next->data;
1808 roletrans->tgt_str = parse_current->next->next->data;
1809 roletrans->obj_str = parse_current->next->next->next->data;
1810 roletrans->result_str = parse_current->next->next->next->next->data;
1812 ast_node->data = roletrans;
1820 cil_destroy_roletransition(roletrans);
1824 void cil_destroy_roletransition(struct cil_roletransition *roletrans)
1826 if (roletrans == NULL) {
1830 free(roletrans);