Lines Matching refs:roletrans
728 struct cil_roletransition *roletrans = node->data; in cil_tree_print_node() local
731 if (roletrans->src != NULL) { in cil_tree_print_node()
732 cil_log(CIL_INFO, " %s", roletrans->src->datum.name); in cil_tree_print_node()
734 cil_log(CIL_INFO, " %s", roletrans->src_str); in cil_tree_print_node()
737 if (roletrans->tgt != NULL) { in cil_tree_print_node()
738 cil_log(CIL_INFO, " %s", ((struct cil_symtab_datum *)roletrans->tgt)->name); in cil_tree_print_node()
740 cil_log(CIL_INFO, " %s", roletrans->tgt_str); in cil_tree_print_node()
743 if (roletrans->obj != NULL) { in cil_tree_print_node()
744 cil_log(CIL_INFO, " %s", roletrans->obj->datum.name); in cil_tree_print_node()
746 cil_log(CIL_INFO, " %s", roletrans->obj_str); in cil_tree_print_node()
749 if (roletrans->result != NULL) { in cil_tree_print_node()
750 cil_log(CIL_INFO, " %s\n", roletrans->result->datum.name); in cil_tree_print_node()
752 cil_log(CIL_INFO, " %s\n", roletrans->result_str); in cil_tree_print_node()