Searched refs:svgfile (Results 1 – 1 of 1) sorted by relevance
/Linux-v4.19/tools/perf/util/ |
D | svghelper.c | 43 static FILE *svgfile; variable 91 svgfile = fopen(filename, "w"); in open_svg() 92 if (!svgfile) { in open_svg() 110 fprintf(svgfile, "<?xml version=\"1.0\" standalone=\"no\"?> \n"); in open_svg() 111 fprintf(svgfile, "<!DOCTYPE svg SYSTEM \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n"); in open_svg() 112 …fprintf(svgfile, "<svg width=\"%i\" height=\"%" PRIu64 "\" version=\"1.1\" xmlns=\"http://www.w3.o… in open_svg() 114 fprintf(svgfile, "<defs>\n <style type=\"text/css\">\n <![CDATA[\n"); in open_svg() 116 fprintf(svgfile, " rect { stroke-width: 1; }\n"); in open_svg() 117 …fprintf(svgfile, " rect.process { fill:rgb(180,180,180); fill-opacity:0.9; stroke-width:1; … in open_svg() 118 …fprintf(svgfile, " rect.process2 { fill:rgb(180,180,180); fill-opacity:0.9; stroke-width:0; … in open_svg() [all …]
|