Home | History | Annotate | Download | only in scripts

Lines Matching refs:output

3 """Transform gprof(1) output into useful HTML."""

10 <title>gprof output (%s)</title>
32 output = file(outputfilename, "w")
33 output.write(header % filename)
35 output.write(line)
42 output.write(line)
46 output.write('%s<a name="flat:%s" href="#call:%s">%s</a>\n' %
49 output.write(line)
55 output.write(line)
61 output.write(line)
64 output.write('%s<a name="call:%s" href="#flat:%s">%s</a>%s\n' %
67 output.write('%s<a href="#call:%s">%s</a>%s\n' %
73 output.write(part)
74 output.write(trailer)
75 output.close()