Lines Matching refs:hf

4236 def callgraphHTML(sv, hf, num, cg, title, color, devid):
4251 hf.write(html_func_top.format(cgid, color, num, title, flen))
4262 hf.write(html_func_leaf.format(line.name, flen))
4264 hf.write(html_func_end)
4266 hf.write(html_func_start.format(num, line.name, flen))
4268 hf.write(html_func_end)
4271 def addCallgraphs(sv, hf, data):
4272 hf.write('<section id="callgraphs" class="callgraph">\n')
4299 num = callgraphHTML(sv, hf, num, cg,
4303 num = callgraphHTML(sv, hf, num, cg,
4305 hf.write('\n\n </section>\n')
4499 hf = open(htmlfile, 'w')
4500 hf.write(html+'</table>\n</body>\n</html>\n')
4501 hf.close()
4564 hf = open(htmlfile, 'w')
4565 hf.write(html+'</body>\n</html>\n')
4566 hf.close()
4608 hf = open(htmlfile, 'w')
4609 hf.write(html+'</table>\n'+extra+'</body>\n</html>\n')
4610 hf.close()
4922 hf = open(sysvals.htmlfile, 'w')
4923 addCSS(hf, sysvals, len(testruns), kerror)
4926 hf.write(devtl.html)
4927 hf.write('<div id="devicedetailtitle"></div>\n')
4928 hf.write('<div id="devicedetail" style="display:none;">\n')
4931 hf.write('<div id="devicedetail%d">\n' % data.testnumber)
4933 hf.write(devtl.html_phaselet.format('pre_suspend_process', \
4940 hf.write(devtl.html_phaselet.format(b, left, width, \
4942 hf.write(devtl.html_phaselet.format('post_resume_process', \
4945 hf.write(devtl.html_phaselet.format('cmdexec', '0', '0', pscolor))
4946 hf.write('</div>\n')
4947 hf.write('</div>\n')
4955 addCallgraphs(sysvals, hf, data)
4959 hf.write('<div id="testlog" style="display:none;">\n'+sysvals.logmsg+'</div>\n')
4962 hf.write('<div id="dmesglog" style="display:none;">\n')
4966 hf.write(line)
4968 hf.write('</div>\n')
4971 hf.write('<div id="ftracelog" style="display:none;">\n')
4974 hf.write(line)
4976 hf.write('</div>\n')
4979 addScriptCode(hf, testruns)
4980 hf.write('</body>\n</html>\n')
4981 hf.close()
4984 def addCSS(hf, sv, testcount=1, kerror=False, extra=''):
5078 hf.write(html_header)
5084 # hf: the open html file pointer
5086 def addScriptCode(hf, testruns):
5089 hf.write('<script type="text/javascript">\n');
5097 hf.write(detail);
5478 hf.write(script_code);