Lines Matching refs:roletrans
829 struct cil_roletransition *roletrans = node->data; in cil_tree_print_node() local
832 if (roletrans->src != NULL) { in cil_tree_print_node()
833 cil_log(CIL_INFO, " %s", roletrans->src->datum.name); in cil_tree_print_node()
835 cil_log(CIL_INFO, " %s", roletrans->src_str); in cil_tree_print_node()
838 if (roletrans->tgt != NULL) { in cil_tree_print_node()
839 cil_log(CIL_INFO, " %s", ((struct cil_symtab_datum *)roletrans->tgt)->name); in cil_tree_print_node()
841 cil_log(CIL_INFO, " %s", roletrans->tgt_str); in cil_tree_print_node()
844 if (roletrans->obj != NULL) { in cil_tree_print_node()
845 cil_log(CIL_INFO, " %s", roletrans->obj->datum.name); in cil_tree_print_node()
847 cil_log(CIL_INFO, " %s", roletrans->obj_str); in cil_tree_print_node()
850 if (roletrans->result != NULL) { in cil_tree_print_node()
851 cil_log(CIL_INFO, " %s\n", roletrans->result->datum.name); in cil_tree_print_node()
853 cil_log(CIL_INFO, " %s\n", roletrans->result_str); in cil_tree_print_node()