Lines Matching refs:hf

4212 def callgraphHTML(sv, hf, num, cg, title, color, devid):
4227 hf.write(html_func_top.format(cgid, color, num, title, flen))
4238 hf.write(html_func_leaf.format(line.name, flen))
4240 hf.write(html_func_end)
4242 hf.write(html_func_start.format(num, line.name, flen))
4244 hf.write(html_func_end)
4247 def addCallgraphs(sv, hf, data):
4248 hf.write('<section id="callgraphs" class="callgraph">\n')
4275 num = callgraphHTML(sv, hf, num, cg,
4279 num = callgraphHTML(sv, hf, num, cg,
4281 hf.write('\n\n </section>\n')
4474 hf = open(htmlfile, 'w')
4475 hf.write(html+'</table>\n</body>\n</html>\n')
4476 hf.close()
4539 hf = open(htmlfile, 'w')
4540 hf.write(html+'</body>\n</html>\n')
4541 hf.close()
4583 hf = open(htmlfile, 'w')
4584 hf.write(html+'</table>\n'+extra+'</body>\n</html>\n')
4585 hf.close()
4897 hf = open(sysvals.htmlfile, 'w')
4898 addCSS(hf, sysvals, len(testruns), kerror)
4901 hf.write(devtl.html)
4902 hf.write('<div id="devicedetailtitle"></div>\n')
4903 hf.write('<div id="devicedetail" style="display:none;">\n')
4906 hf.write('<div id="devicedetail%d">\n' % data.testnumber)
4908 hf.write(devtl.html_phaselet.format('pre_suspend_process', \
4915 hf.write(devtl.html_phaselet.format(b, left, width, \
4917 hf.write(devtl.html_phaselet.format('post_resume_process', \
4920 hf.write(devtl.html_phaselet.format('cmdexec', '0', '0', pscolor))
4921 hf.write('</div>\n')
4922 hf.write('</div>\n')
4930 addCallgraphs(sysvals, hf, data)
4934 hf.write('<div id="testlog" style="display:none;">\n'+sysvals.logmsg+'</div>\n')
4937 hf.write('<div id="dmesglog" style="display:none;">\n')
4941 hf.write(line)
4943 hf.write('</div>\n')
4946 hf.write('<div id="ftracelog" style="display:none;">\n')
4949 hf.write(line)
4951 hf.write('</div>\n')
4954 addScriptCode(hf, testruns)
4955 hf.write('</body>\n</html>\n')
4956 hf.close()
4959 def addCSS(hf, sv, testcount=1, kerror=False, extra=''):
5053 hf.write(html_header)
5059 # hf: the open html file pointer
5061 def addScriptCode(hf, testruns):
5449 hf.write(script_code);