Lines Matching refs:hf
4040 def callgraphHTML(sv, hf, num, cg, title, color, devid): argument
4055 hf.write(html_func_top.format(cgid, color, num, title, flen))
4064 hf.write(html_func_leaf.format(line.name, flen))
4066 hf.write(html_func_end)
4068 hf.write(html_func_start.format(num, line.name, flen))
4070 hf.write(html_func_end)
4073 def addCallgraphs(sv, hf, data): argument
4074 hf.write('<section id="callgraphs" class="callgraph">\n')
4101 num = callgraphHTML(sv, hf, num, cg,
4105 num = callgraphHTML(sv, hf, num, cg,
4107 hf.write('\n\n </section>\n')
4300 hf = open(htmlfile, 'w')
4301 hf.write(html+'</table>\n</body>\n</html>\n')
4302 hf.close()
4365 hf = open(htmlfile, 'w')
4366 hf.write(html+'</body>\n</html>\n')
4367 hf.close()
4409 hf = open(htmlfile, 'w')
4410 hf.write(html+'</table>\n'+extra+'</body>\n</html>\n')
4411 hf.close()
4726 hf = open(sysvals.htmlfile, 'w')
4727 addCSS(hf, sysvals, len(testruns), kerror)
4730 hf.write(devtl.html)
4731 hf.write('<div id="devicedetailtitle"></div>\n')
4732 hf.write('<div id="devicedetail" style="display:none;">\n')
4735 hf.write('<div id="devicedetail%d">\n' % data.testnumber)
4737 hf.write(devtl.html_phaselet.format('pre_suspend_process', \
4744 hf.write(devtl.html_phaselet.format(b, left, width, \
4746 hf.write(devtl.html_phaselet.format('post_resume_process', \
4749 hf.write(devtl.html_phaselet.format('cmdexec', '0', '0', pscolor))
4750 hf.write('</div>\n')
4751 hf.write('</div>\n')
4759 addCallgraphs(sysvals, hf, data)
4763 hf.write('<div id="testlog" style="display:none;">\n'+sysvals.logmsg+'</div>\n')
4766 hf.write('<div id="dmesglog" style="display:none;">\n')
4770 hf.write(line)
4772 hf.write('</div>\n')
4775 hf.write('<div id="ftracelog" style="display:none;">\n')
4778 hf.write(line)
4780 hf.write('</div>\n')
4783 addScriptCode(hf, testruns)
4784 hf.write('</body>\n</html>\n')
4785 hf.close()
4788 def addCSS(hf, sv, testcount=1, kerror=False, extra=''): argument
4882 hf.write(html_header)
4890 def addScriptCode(hf, testruns): argument
5278 hf.write(script_code);