Lines Matching refs:hf

4212 def callgraphHTML(sv, hf, num, cg, title, color, devid):  argument
4227 hf.write(html_func_top.format(cgid, color, num, title, flen))
4238 hf.write(html_func_leaf.format(line.name, flen))
4240 hf.write(html_func_end)
4242 hf.write(html_func_start.format(num, line.name, flen))
4244 hf.write(html_func_end)
4247 def addCallgraphs(sv, hf, data): argument
4248 hf.write('<section id="callgraphs" class="callgraph">\n')
4275 num = callgraphHTML(sv, hf, num, cg,
4279 num = callgraphHTML(sv, hf, num, cg,
4281 hf.write('\n\n </section>\n')
4475 hf = open(htmlfile, 'w')
4476 hf.write(html+'</table>\n</body>\n</html>\n')
4477 hf.close()
4540 hf = open(htmlfile, 'w')
4541 hf.write(html+'</body>\n</html>\n')
4542 hf.close()
4584 hf = open(htmlfile, 'w')
4585 hf.write(html+'</table>\n'+extra+'</body>\n</html>\n')
4586 hf.close()
4898 hf = open(sysvals.htmlfile, 'w')
4899 addCSS(hf, sysvals, len(testruns), kerror)
4902 hf.write(devtl.html)
4903 hf.write('<div id="devicedetailtitle"></div>\n')
4904 hf.write('<div id="devicedetail" style="display:none;">\n')
4907 hf.write('<div id="devicedetail%d">\n' % data.testnumber)
4909 hf.write(devtl.html_phaselet.format('pre_suspend_process', \
4916 hf.write(devtl.html_phaselet.format(b, left, width, \
4918 hf.write(devtl.html_phaselet.format('post_resume_process', \
4921 hf.write(devtl.html_phaselet.format('cmdexec', '0', '0', pscolor))
4922 hf.write('</div>\n')
4923 hf.write('</div>\n')
4931 addCallgraphs(sysvals, hf, data)
4935 hf.write('<div id="testlog" style="display:none;">\n'+sysvals.logmsg+'</div>\n')
4938 hf.write('<div id="dmesglog" style="display:none;">\n')
4942 hf.write(line)
4944 hf.write('</div>\n')
4947 hf.write('<div id="ftracelog" style="display:none;">\n')
4950 hf.write(line)
4952 hf.write('</div>\n')
4955 addScriptCode(hf, testruns)
4956 hf.write('</body>\n</html>\n')
4957 hf.close()
4960 def addCSS(hf, sv, testcount=1, kerror=False, extra=''): argument
5054 hf.write(html_header)
5062 def addScriptCode(hf, testruns): argument
5065 hf.write('<script type="text/javascript">\n');
5073 hf.write(detail);
5450 hf.write(script_code);