Lines Matching defs:f
720 graph_to_dot(FILE *f, struct graph *graph)
727 rc = fprintf(f, "digraph \"%s\" {\n\trankdir=LR;\n", graph->name);
731 rc = fprintf(f, "\tnode [margin=0.02 fontsize=11 fontname=sans];\n");
739 rc = fprintf(f, "\t\"%s\"", node_name);
744 rc = fprintf(f, "%s", attrs);
748 rc = fprintf(f, " [fontcolor=darkorange shape=plain]");
752 rc = fprintf(f, ";\n");
759 rc = fprintf(f, "\t\"%s\" -> \"%s\"%s;\n", node_name,
766 rc = fprintf(f, "}\n");
777 rte_graph_export(const char *name, FILE *f)
784 rc = graph_to_dot(f, graph);
793 graph_scan_dump(FILE *f, rte_graph_t id, bool all)
797 RTE_VERIFY(f);
803 graph_dump(f, graph);
805 graph_dump(f, graph);
814 rte_graph_dump(FILE *f, rte_graph_t id)
816 graph_scan_dump(f, id, false);
820 rte_graph_list_dump(FILE *f)
822 graph_scan_dump(f, 0, true);