Lines Matching refs:hf
3835 def callgraphHTML(sv, hf, num, cg, title, color, devid): argument
3850 hf.write(html_func_top.format(cgid, color, num, title, flen))
3859 hf.write(html_func_leaf.format(line.name, flen))
3861 hf.write(html_func_end)
3863 hf.write(html_func_start.format(num, line.name, flen))
3865 hf.write(html_func_end)
3868 def addCallgraphs(sv, hf, data): argument
3869 hf.write('<section id="callgraphs" class="callgraph">\n')
3894 num = callgraphHTML(sv, hf, num, cg,
3898 num = callgraphHTML(sv, hf, num, cg,
3900 hf.write('\n\n </section>\n')
4084 hf = open(htmlfile, 'w')
4085 hf.write(html+'</table>\n</body>\n</html>\n')
4086 hf.close()
4149 hf = open(htmlfile, 'w')
4150 hf.write(html+'</body>\n</html>\n')
4151 hf.close()
4193 hf = open(htmlfile, 'w')
4194 hf.write(html+'</table>\n'+extra+'</body>\n</html>\n')
4195 hf.close()
4503 hf = open(sysvals.htmlfile, 'w')
4504 addCSS(hf, sysvals, len(testruns), kerror)
4507 hf.write(devtl.html)
4508 hf.write('<div id="devicedetailtitle"></div>\n')
4509 hf.write('<div id="devicedetail" style="display:none;">\n')
4512 hf.write('<div id="devicedetail%d">\n' % data.testnumber)
4514 hf.write(devtl.html_phaselet.format('pre_suspend_process', \
4521 hf.write(devtl.html_phaselet.format(b, left, width, \
4523 hf.write(devtl.html_phaselet.format('post_resume_process', \
4526 hf.write(devtl.html_phaselet.format('cmdexec', '0', '0', pscolor))
4527 hf.write('</div>\n')
4528 hf.write('</div>\n')
4536 addCallgraphs(sysvals, hf, data)
4540 hf.write('<div id="testlog" style="display:none;">\n'+sysvals.logmsg+'</div>\n')
4543 hf.write('<div id="dmesglog" style="display:none;">\n')
4547 hf.write(line)
4549 hf.write('</div>\n')
4552 hf.write('<div id="ftracelog" style="display:none;">\n')
4555 hf.write(line)
4557 hf.write('</div>\n')
4560 addScriptCode(hf, testruns)
4561 hf.write('</body>\n</html>\n')
4562 hf.close()
4565 def addCSS(hf, sv, testcount=1, kerror=False, extra=''): argument
4659 hf.write(html_header)
4667 def addScriptCode(hf, testruns): argument
5055 hf.write(script_code);