Lines Matching refs:htmlfile
141 htmlfile = 'output.html' variable in SystemValues
392 self.htmlfile = m.group('name')+'.html'
396 self.htmlfile = m.group('name')+'.html'
456 self.htmlfile = \
1141 entry['urls'][self.hostname] = [self.htmlfile]
1142 elif self.htmlfile not in entry['urls'][self.hostname]:
1143 entry['urls'][self.hostname].append(self.htmlfile)
1163 'urls': {self.hostname: [self.htmlfile]}
4051 def createHTMLSummarySimple(testruns, htmlfile, title): argument
4217 hf = open(htmlfile, 'w')
4221 def createHTMLDeviceSummary(testruns, htmlfile, title): argument
4282 hf = open(htmlfile, 'w')
4287 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''): argument
4326 hf = open(htmlfile, 'w')
4643 hf = open(sysvals.htmlfile, 'w')
5916 pprint('PROCESSING: %s' % sysvals.htmlfile)
5965 sysvals.vprint('Creating the html timeline (%s)...' % sysvals.htmlfile)
5968 pprint('DONE: %s' % sysvals.htmlfile)
5981 def rerunTest(htmlfile=''): argument
5986 if htmlfile:
5987 sysvals.htmlfile = htmlfile
5990 if os.path.exists(sysvals.htmlfile):
5991 if not os.path.isfile(sysvals.htmlfile):
5992 doError('a directory already exists with this name: %s' % sysvals.htmlfile)
5993 elif not os.access(sysvals.htmlfile, os.W_OK):
5994 doError('missing permission to write to %s' % sysvals.htmlfile)
6051 sysvals.htmlfile = os.path.relpath(file, outpath)
6107 match[0]['urls'][sysvals.hostname] = [sysvals.htmlfile]
6108 elif sysvals.htmlfile not in match[0]['urls'][sysvals.hostname]:
6109 match[0]['urls'][sysvals.hostname].append(sysvals.htmlfile)
6113 'urls': {sysvals.hostname: [sysvals.htmlfile]},
6162 'url': sysvals.htmlfile,
6177 sysvals.dmesgfile = sysvals.ftracefile = sysvals.htmlfile = ''
6186 if (sysvals.dmesgfile or sysvals.ftracefile) and sysvals.htmlfile and \
6187 (force or not sysvals.usable(sysvals.htmlfile)):