Lines Matching refs:htmlfile

139 	htmlfile = 'output.html'  variable in SystemValues
370 self.htmlfile = m.group('name')+'.html'
374 self.htmlfile = m.group('name')+'.html'
440 self.htmlfile = \
1101 entry['urls'][self.hostname] = [self.htmlfile]
1102 elif self.htmlfile not in entry['urls'][self.hostname]:
1103 entry['urls'][self.hostname].append(self.htmlfile)
1122 'urls': {self.hostname: [self.htmlfile]}
3927 def createHTMLSummarySimple(testruns, htmlfile, title): argument
4084 hf = open(htmlfile, 'w')
4088 def createHTMLDeviceSummary(testruns, htmlfile, title): argument
4149 hf = open(htmlfile, 'w')
4154 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''): argument
4193 hf = open(htmlfile, 'w')
4503 hf = open(sysvals.htmlfile, 'w')
5846 sysvals.vprint('Creating the html timeline (%s)...' % sysvals.htmlfile)
5861 def rerunTest(htmlfile=''): argument
5866 if htmlfile:
5867 sysvals.htmlfile = htmlfile
5870 if os.path.exists(sysvals.htmlfile):
5871 if not os.path.isfile(sysvals.htmlfile):
5872 doError('a directory already exists with this name: %s' % sysvals.htmlfile)
5873 elif not os.access(sysvals.htmlfile, os.W_OK):
5874 doError('missing permission to write to %s' % sysvals.htmlfile)
5931 sysvals.htmlfile = os.path.relpath(file, outpath)
5984 match[0]['urls'][sysvals.hostname] = [sysvals.htmlfile]
5985 elif sysvals.htmlfile not in match[0]['urls'][sysvals.hostname]:
5986 match[0]['urls'][sysvals.hostname].append(sysvals.htmlfile)
5990 'urls': {sysvals.hostname: [sysvals.htmlfile]},
6039 'url': sysvals.htmlfile,
6049 sysvals.dmesgfile = sysvals.ftracefile = sysvals.htmlfile = ''
6056 if sysvals.ftracefile and sysvals.htmlfile and \
6057 (force or not os.path.exists(sysvals.htmlfile)):