Lines Matching refs:htmlfile

154 	htmlfile = 'output.html'  variable in SystemValues
436 self.htmlfile = m.group('name')+'.html'
440 self.htmlfile = m.group('name')+'.html'
509 self.htmlfile = \
1278 entry['urls'][self.hostname] = [self.htmlfile]
1279 elif self.htmlfile not in entry['urls'][self.hostname]:
1280 entry['urls'][self.hostname].append(self.htmlfile)
1300 'urls': {self.hostname: [self.htmlfile]}
4333 def createHTMLSummarySimple(testruns, htmlfile, title): argument
4500 hf = open(htmlfile, 'w')
4504 def createHTMLDeviceSummary(testruns, htmlfile, title): argument
4565 hf = open(htmlfile, 'w')
4570 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''): argument
4609 hf = open(htmlfile, 'w')
4923 hf = open(sysvals.htmlfile, 'w')
6176 pprint('PROCESSING: %s' % sysvals.htmlfile)
6225 sysvals.vprint('Creating the html timeline (%s)...' % sysvals.htmlfile)
6228 pprint('DONE: %s' % sysvals.htmlfile)
6241 def rerunTest(htmlfile=''): argument
6246 if htmlfile:
6247 sysvals.htmlfile = htmlfile
6250 if os.path.exists(sysvals.htmlfile):
6251 if not os.path.isfile(sysvals.htmlfile):
6252 doError('a directory already exists with this name: %s' % sysvals.htmlfile)
6253 elif not os.access(sysvals.htmlfile, os.W_OK):
6254 doError('missing permission to write to %s' % sysvals.htmlfile)
6327 sysvals.htmlfile = os.path.relpath(file, outpath)
6400 match[0]['urls'][sysvals.hostname] = [sysvals.htmlfile]
6401 elif sysvals.htmlfile not in match[0]['urls'][sysvals.hostname]:
6402 match[0]['urls'][sysvals.hostname].append(sysvals.htmlfile)
6406 'urls': {sysvals.hostname: [sysvals.htmlfile]},
6457 'url': sysvals.htmlfile,
6472 sysvals.dmesgfile = sysvals.ftracefile = sysvals.htmlfile = ''
6481 if (sysvals.dmesgfile or sysvals.ftracefile) and sysvals.htmlfile and \
6482 (force or not sysvals.usable(sysvals.htmlfile, True)):