Lines Matching refs:hf

4190 def callgraphHTML(sv, hf, num, cg, title, color, devid):  argument
4205 hf.write(html_func_top.format(cgid, color, num, title, flen))
4216 hf.write(html_func_leaf.format(line.name, flen))
4218 hf.write(html_func_end)
4220 hf.write(html_func_start.format(num, line.name, flen))
4222 hf.write(html_func_end)
4225 def addCallgraphs(sv, hf, data): argument
4226 hf.write('<section id="callgraphs" class="callgraph">\n')
4253 num = callgraphHTML(sv, hf, num, cg,
4257 num = callgraphHTML(sv, hf, num, cg,
4259 hf.write('\n\n </section>\n')
4452 hf = open(htmlfile, 'w')
4453 hf.write(html+'</table>\n</body>\n</html>\n')
4454 hf.close()
4517 hf = open(htmlfile, 'w')
4518 hf.write(html+'</body>\n</html>\n')
4519 hf.close()
4561 hf = open(htmlfile, 'w')
4562 hf.write(html+'</table>\n'+extra+'</body>\n</html>\n')
4563 hf.close()
4875 hf = open(sysvals.htmlfile, 'w')
4876 addCSS(hf, sysvals, len(testruns), kerror)
4879 hf.write(devtl.html)
4880 hf.write('<div id="devicedetailtitle"></div>\n')
4881 hf.write('<div id="devicedetail" style="display:none;">\n')
4884 hf.write('<div id="devicedetail%d">\n' % data.testnumber)
4886 hf.write(devtl.html_phaselet.format('pre_suspend_process', \
4893 hf.write(devtl.html_phaselet.format(b, left, width, \
4895 hf.write(devtl.html_phaselet.format('post_resume_process', \
4898 hf.write(devtl.html_phaselet.format('cmdexec', '0', '0', pscolor))
4899 hf.write('</div>\n')
4900 hf.write('</div>\n')
4908 addCallgraphs(sysvals, hf, data)
4912 hf.write('<div id="testlog" style="display:none;">\n'+sysvals.logmsg+'</div>\n')
4915 hf.write('<div id="dmesglog" style="display:none;">\n')
4919 hf.write(line)
4921 hf.write('</div>\n')
4924 hf.write('<div id="ftracelog" style="display:none;">\n')
4927 hf.write(line)
4929 hf.write('</div>\n')
4932 addScriptCode(hf, testruns)
4933 hf.write('</body>\n</html>\n')
4934 hf.close()
4937 def addCSS(hf, sv, testcount=1, kerror=False, extra=''): argument
5031 hf.write(html_header)
5039 def addScriptCode(hf, testruns): argument
5427 hf.write(script_code);