Lines Matching refs:hf

3957 def callgraphHTML(sv, hf, num, cg, title, color, devid):
3972 hf.write(html_func_top.format(cgid, color, num, title, flen))
3981 hf.write(html_func_leaf.format(line.name, flen))
3983 hf.write(html_func_end)
3985 hf.write(html_func_start.format(num, line.name, flen))
3987 hf.write(html_func_end)
3990 def addCallgraphs(sv, hf, data):
3991 hf.write('<section id="callgraphs" class="callgraph">\n')
4018 num = callgraphHTML(sv, hf, num, cg,
4022 num = callgraphHTML(sv, hf, num, cg,
4024 hf.write('\n\n </section>\n')
4217 hf = open(htmlfile, 'w')
4218 hf.write(html+'</table>\n</body>\n</html>\n')
4219 hf.close()
4282 hf = open(htmlfile, 'w')
4283 hf.write(html+'</body>\n</html>\n')
4284 hf.close()
4326 hf = open(htmlfile, 'w')
4327 hf.write(html+'</table>\n'+extra+'</body>\n</html>\n')
4328 hf.close()
4643 hf = open(sysvals.htmlfile, 'w')
4644 addCSS(hf, sysvals, len(testruns), kerror)
4647 hf.write(devtl.html)
4648 hf.write('<div id="devicedetailtitle"></div>\n')
4649 hf.write('<div id="devicedetail" style="display:none;">\n')
4652 hf.write('<div id="devicedetail%d">\n' % data.testnumber)
4654 hf.write(devtl.html_phaselet.format('pre_suspend_process', \
4661 hf.write(devtl.html_phaselet.format(b, left, width, \
4663 hf.write(devtl.html_phaselet.format('post_resume_process', \
4666 hf.write(devtl.html_phaselet.format('cmdexec', '0', '0', pscolor))
4667 hf.write('</div>\n')
4668 hf.write('</div>\n')
4676 addCallgraphs(sysvals, hf, data)
4680 hf.write('<div id="testlog" style="display:none;">\n'+sysvals.logmsg+'</div>\n')
4683 hf.write('<div id="dmesglog" style="display:none;">\n')
4687 hf.write(line)
4689 hf.write('</div>\n')
4692 hf.write('<div id="ftracelog" style="display:none;">\n')
4695 hf.write(line)
4697 hf.write('</div>\n')
4700 addScriptCode(hf, testruns)
4701 hf.write('</body>\n</html>\n')
4702 hf.close()
4705 def addCSS(hf, sv, testcount=1, kerror=False, extra=''):
4799 hf.write(html_header)
4805 # hf: the open html file pointer
4807 def addScriptCode(hf, testruns):
5195 hf.write(script_code);