Lines Matching defs:htmlfile

153 	htmlfile = 'output.html'
425 self.htmlfile = m.group('name')+'.html'
429 self.htmlfile = m.group('name')+'.html'
498 self.htmlfile = \
1255 entry['urls'][self.hostname] = [self.htmlfile]
1256 elif self.htmlfile not in entry['urls'][self.hostname]:
1257 entry['urls'][self.hostname].append(self.htmlfile)
1277 'urls': {self.hostname: [self.htmlfile]}
4308 def createHTMLSummarySimple(testruns, htmlfile, title):
4474 hf = open(htmlfile, 'w')
4478 def createHTMLDeviceSummary(testruns, htmlfile, title):
4539 hf = open(htmlfile, 'w')
4544 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''):
4583 hf = open(htmlfile, 'w')
4897 hf = open(sysvals.htmlfile, 'w')
6128 pprint('PROCESSING: %s' % sysvals.htmlfile)
6177 sysvals.vprint('Creating the html timeline (%s)...' % sysvals.htmlfile)
6180 pprint('DONE: %s' % sysvals.htmlfile)
6193 def rerunTest(htmlfile=''):
6198 if htmlfile:
6199 sysvals.htmlfile = htmlfile
6202 if os.path.exists(sysvals.htmlfile):
6203 if not os.path.isfile(sysvals.htmlfile):
6204 doError('a directory already exists with this name: %s' % sysvals.htmlfile)
6205 elif not os.access(sysvals.htmlfile, os.W_OK):
6206 doError('missing permission to write to %s' % sysvals.htmlfile)
6276 sysvals.htmlfile = os.path.relpath(file, outpath)
6343 match[0]['urls'][sysvals.hostname] = [sysvals.htmlfile]
6344 elif sysvals.htmlfile not in match[0]['urls'][sysvals.hostname]:
6345 match[0]['urls'][sysvals.hostname].append(sysvals.htmlfile)
6349 'urls': {sysvals.hostname: [sysvals.htmlfile]},
6400 'url': sysvals.htmlfile,
6415 sysvals.dmesgfile = sysvals.ftracefile = sysvals.htmlfile = ''
6424 if (sysvals.dmesgfile or sysvals.ftracefile) and sysvals.htmlfile and \
6425 (force or not sysvals.usable(sysvals.htmlfile, True)):