Lines Matching defs:htmlfile

154 	htmlfile = 'output.html'
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]}
4332 def createHTMLSummarySimple(testruns, htmlfile, title):
4499 hf = open(htmlfile, 'w')
4503 def createHTMLDeviceSummary(testruns, htmlfile, title):
4564 hf = open(htmlfile, 'w')
4569 def createHTMLIssuesSummary(testruns, issues, htmlfile, title, extra=''):
4608 hf = open(htmlfile, 'w')
4922 hf = open(sysvals.htmlfile, 'w')
6175 pprint('PROCESSING: %s' % sysvals.htmlfile)
6224 sysvals.vprint('Creating the html timeline (%s)...' % sysvals.htmlfile)
6227 pprint('DONE: %s' % sysvals.htmlfile)
6240 def rerunTest(htmlfile=''):
6245 if htmlfile:
6246 sysvals.htmlfile = htmlfile
6249 if os.path.exists(sysvals.htmlfile):
6250 if not os.path.isfile(sysvals.htmlfile):
6251 doError('a directory already exists with this name: %s' % sysvals.htmlfile)
6252 elif not os.access(sysvals.htmlfile, os.W_OK):
6253 doError('missing permission to write to %s' % sysvals.htmlfile)
6326 sysvals.htmlfile = os.path.relpath(file, outpath)
6399 match[0]['urls'][sysvals.hostname] = [sysvals.htmlfile]
6400 elif sysvals.htmlfile not in match[0]['urls'][sysvals.hostname]:
6401 match[0]['urls'][sysvals.hostname].append(sysvals.htmlfile)
6405 'urls': {sysvals.hostname: [sysvals.htmlfile]},
6456 'url': sysvals.htmlfile,
6471 sysvals.dmesgfile = sysvals.ftracefile = sysvals.htmlfile = ''
6480 if (sysvals.dmesgfile or sysvals.ftracefile) and sysvals.htmlfile and \
6481 (force or not sysvals.usable(sysvals.htmlfile, True)):