Lines Matching refs:htmlfile

143 	htmlfile = 'output.html'  variable in SystemValues
394 self.htmlfile = m.group('name')+'.html'
398 self.htmlfile = m.group('name')+'.html'
458 self.htmlfile = \
1167 entry['urls'][self.hostname] = [self.htmlfile]
1168 elif self.htmlfile not in entry['urls'][self.hostname]:
1169 entry['urls'][self.hostname].append(self.htmlfile)
1189 'urls': {self.hostname: [self.htmlfile]}
4134 def createHTMLSummarySimple(testruns, htmlfile, title): argument
4300 hf = open(htmlfile, 'w')
4304 def createHTMLDeviceSummary(testruns, htmlfile, title): argument
4365 hf = open(htmlfile, 'w')
4370 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''): argument
4409 hf = open(htmlfile, 'w')
4726 hf = open(sysvals.htmlfile, 'w')
5956 pprint('PROCESSING: %s' % sysvals.htmlfile)
6005 sysvals.vprint('Creating the html timeline (%s)...' % sysvals.htmlfile)
6008 pprint('DONE: %s' % sysvals.htmlfile)
6021 def rerunTest(htmlfile=''): argument
6026 if htmlfile:
6027 sysvals.htmlfile = htmlfile
6030 if os.path.exists(sysvals.htmlfile):
6031 if not os.path.isfile(sysvals.htmlfile):
6032 doError('a directory already exists with this name: %s' % sysvals.htmlfile)
6033 elif not os.access(sysvals.htmlfile, os.W_OK):
6034 doError('missing permission to write to %s' % sysvals.htmlfile)
6102 sysvals.htmlfile = os.path.relpath(file, outpath)
6166 match[0]['urls'][sysvals.hostname] = [sysvals.htmlfile]
6167 elif sysvals.htmlfile not in match[0]['urls'][sysvals.hostname]:
6168 match[0]['urls'][sysvals.hostname].append(sysvals.htmlfile)
6172 'urls': {sysvals.hostname: [sysvals.htmlfile]},
6221 'url': sysvals.htmlfile,
6236 sysvals.dmesgfile = sysvals.ftracefile = sysvals.htmlfile = ''
6245 if (sysvals.dmesgfile or sysvals.ftracefile) and sysvals.htmlfile and \
6246 (force or not sysvals.usable(sysvals.htmlfile)):