Lines Matching refs:hf

3428 def callgraphHTML(sv, hf, num, cg, title, color, devid):  argument
3443 hf.write(html_func_top.format(cgid, color, num, title, flen))
3452 hf.write(html_func_leaf.format(line.name, flen))
3454 hf.write(html_func_end)
3456 hf.write(html_func_start.format(num, line.name, flen))
3458 hf.write(html_func_end)
3461 def addCallgraphs(sv, hf, data): argument
3462 hf.write('<section id="callgraphs" class="callgraph">\n')
3485 num = callgraphHTML(sv, hf, num, cg,
3489 num = callgraphHTML(sv, hf, num, cg,
3491 hf.write('\n\n </section>\n')
3649 hf = open(htmlfile, 'w')
3650 hf.write(html+'</table>\n</body>\n</html>\n')
3651 hf.close()
3960 hf = open(sysvals.htmlfile, 'w')
3961 addCSS(hf, sysvals, len(testruns), kerror)
3964 hf.write(devtl.html)
3965 hf.write('<div id="devicedetailtitle"></div>\n')
3966 hf.write('<div id="devicedetail" style="display:none;">\n')
3969 hf.write('<div id="devicedetail%d">\n' % data.testnumber)
3971 hf.write(devtl.html_phaselet.format('pre_suspend_process', \
3978 hf.write(devtl.html_phaselet.format(b, left, width, \
3980 hf.write(devtl.html_phaselet.format('post_resume_process', \
3983 hf.write(devtl.html_phaselet.format('cmdexec', '0', '0', pscolor))
3984 hf.write('</div>\n')
3985 hf.write('</div>\n')
3993 addCallgraphs(sysvals, hf, data)
3997 hf.write('<div id="testlog" style="display:none;">\n'+sysvals.logmsg+'</div>\n')
4000 hf.write('<div id="dmesglog" style="display:none;">\n')
4004 hf.write(line)
4006 hf.write('</div>\n')
4009 hf.write('<div id="ftracelog" style="display:none;">\n')
4012 hf.write(line)
4014 hf.write('</div>\n')
4017 addScriptCode(hf, testruns)
4018 hf.write('</body>\n</html>\n')
4019 hf.close()
4022 def addCSS(hf, sv, testcount=1, kerror=False, extra=''): argument
4116 hf.write(html_header)
4124 def addScriptCode(hf, testruns): argument
4512 hf.write(script_code);