Lines Matching refs:htmlfile
153 htmlfile = 'output.html' variable in SystemValues
424 self.htmlfile = m.group('name')+'.html'
428 self.htmlfile = m.group('name')+'.html'
497 self.htmlfile = \
1237 entry['urls'][self.hostname] = [self.htmlfile]
1238 elif self.htmlfile not in entry['urls'][self.hostname]:
1239 entry['urls'][self.hostname].append(self.htmlfile)
1259 'urls': {self.hostname: [self.htmlfile]}
4286 def createHTMLSummarySimple(testruns, htmlfile, title): argument
4452 hf = open(htmlfile, 'w')
4456 def createHTMLDeviceSummary(testruns, htmlfile, title): argument
4517 hf = open(htmlfile, 'w')
4522 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''): argument
4561 hf = open(htmlfile, 'w')
4875 hf = open(sysvals.htmlfile, 'w')
6107 pprint('PROCESSING: %s' % sysvals.htmlfile)
6156 sysvals.vprint('Creating the html timeline (%s)...' % sysvals.htmlfile)
6159 pprint('DONE: %s' % sysvals.htmlfile)
6172 def rerunTest(htmlfile=''): argument
6177 if htmlfile:
6178 sysvals.htmlfile = htmlfile
6181 if os.path.exists(sysvals.htmlfile):
6182 if not os.path.isfile(sysvals.htmlfile):
6183 doError('a directory already exists with this name: %s' % sysvals.htmlfile)
6184 elif not os.access(sysvals.htmlfile, os.W_OK):
6185 doError('missing permission to write to %s' % sysvals.htmlfile)
6255 sysvals.htmlfile = os.path.relpath(file, outpath)
6322 match[0]['urls'][sysvals.hostname] = [sysvals.htmlfile]
6323 elif sysvals.htmlfile not in match[0]['urls'][sysvals.hostname]:
6324 match[0]['urls'][sysvals.hostname].append(sysvals.htmlfile)
6328 'urls': {sysvals.hostname: [sysvals.htmlfile]},
6379 'url': sysvals.htmlfile,
6394 sysvals.dmesgfile = sysvals.ftracefile = sysvals.htmlfile = ''
6403 if (sysvals.dmesgfile or sysvals.ftracefile) and sysvals.htmlfile and \
6404 (force or not sysvals.usable(sysvals.htmlfile, True)):