Lines Matching refs:hf
4237 def callgraphHTML(sv, hf, num, cg, title, color, devid): argument
4252 hf.write(html_func_top.format(cgid, color, num, title, flen))
4263 hf.write(html_func_leaf.format(line.name, flen))
4265 hf.write(html_func_end)
4267 hf.write(html_func_start.format(num, line.name, flen))
4269 hf.write(html_func_end)
4272 def addCallgraphs(sv, hf, data): argument
4273 hf.write('<section id="callgraphs" class="callgraph">\n')
4300 num = callgraphHTML(sv, hf, num, cg,
4304 num = callgraphHTML(sv, hf, num, cg,
4306 hf.write('\n\n </section>\n')
4500 hf = open(htmlfile, 'w')
4501 hf.write(html+'</table>\n</body>\n</html>\n')
4502 hf.close()
4565 hf = open(htmlfile, 'w')
4566 hf.write(html+'</body>\n</html>\n')
4567 hf.close()
4609 hf = open(htmlfile, 'w')
4610 hf.write(html+'</table>\n'+extra+'</body>\n</html>\n')
4611 hf.close()
4923 hf = open(sysvals.htmlfile, 'w')
4924 addCSS(hf, sysvals, len(testruns), kerror)
4927 hf.write(devtl.html)
4928 hf.write('<div id="devicedetailtitle"></div>\n')
4929 hf.write('<div id="devicedetail" style="display:none;">\n')
4932 hf.write('<div id="devicedetail%d">\n' % data.testnumber)
4934 hf.write(devtl.html_phaselet.format('pre_suspend_process', \
4941 hf.write(devtl.html_phaselet.format(b, left, width, \
4943 hf.write(devtl.html_phaselet.format('post_resume_process', \
4946 hf.write(devtl.html_phaselet.format('cmdexec', '0', '0', pscolor))
4947 hf.write('</div>\n')
4948 hf.write('</div>\n')
4956 addCallgraphs(sysvals, hf, data)
4960 hf.write('<div id="testlog" style="display:none;">\n'+sysvals.logmsg+'</div>\n')
4963 hf.write('<div id="dmesglog" style="display:none;">\n')
4967 hf.write(line)
4969 hf.write('</div>\n')
4972 hf.write('<div id="ftracelog" style="display:none;">\n')
4975 hf.write(line)
4977 hf.write('</div>\n')
4980 addScriptCode(hf, testruns)
4981 hf.write('</body>\n</html>\n')
4982 hf.close()
4985 def addCSS(hf, sv, testcount=1, kerror=False, extra=''): argument
5079 hf.write(html_header)
5087 def addScriptCode(hf, testruns): argument
5090 hf.write('<script type="text/javascript">\n');
5098 hf.write(detail);
5479 hf.write(script_code);