Lines Matching refs:f
70 FILE *f = stdout; in DotCmd() local
94 f = fopen(av[0], "w"); in DotCmd()
95 if (f == NULL) { in DotCmd()
102 if (f != stdout) in DotCmd()
103 (void)fclose(f); in DotCmd()
120 fprintf(f, "digraph netgraph {\n"); in DotCmd()
121 fprintf(f, "\tedge [ dir = \"none\", fontsize = 10 ];\n"); in DotCmd()
123 fprintf(f, "graph netgraph {\n"); in DotCmd()
125 fprintf(f, "\tedge [ weight = 1.0 ];\n"); in DotCmd()
127 fprintf(f, "\tnode [ shape = record, fontsize = 12 ] {\n"); in DotCmd()
129 fprintf(f, "\t\t\"%jx\" [ label = \"{%s:|{%s|[%jx]:}}\" ];\n", in DotCmd()
134 fprintf(f, "\t};\n"); in DotCmd()
136 fprintf(f, "\tsubgraph cluster_disconnected {\n"); in DotCmd()
137 fprintf(f, "\t\tbgcolor = pink;\n"); in DotCmd()
140 fprintf(f, "\t\t\"%jx\";\n", in DotCmd()
142 fprintf(f, "\t};\n"); in DotCmd()
175 fprintf(f, "\tnode [ shape = octagon, fontsize = 10 ] {\n"); in DotCmd()
177 fprintf(f, "\t\t\"%jx.%s\" [ label = \"%s\" ];\n", in DotCmd()
180 fprintf(f, "\t};\n"); in DotCmd()
182 fprintf(f, "\t{\n\t\tedge [ weight = 2.0, style = bold ];\n"); in DotCmd()
184 fprintf(f, "\t\t\"%jx\" -- \"%jx.%s\";\n", in DotCmd()
188 fprintf(f, "\t};\n"); in DotCmd()
196 fprintf(f, "\t\"%jx\" -> \"%jx\" [ headlabel = \"%s\", taillabel = \"%s\" ] ;\n", in DotCmd()
202 fprintf(f, "\t\"%jx.%s\" -- \"%jx.%s\";\n", in DotCmd()
212 fprintf(f, "}\n"); in DotCmd()
215 if (f != stdout) in DotCmd()
216 (void)fclose(f); in DotCmd()
219 if (f != stdout) in DotCmd()
220 (void)fclose(f); in DotCmd()