Lines Matching refs:stamp

160 	stamp = 0
534 # get the latest time stamp from the dmesg log
1505 self.stamp = 0
2753 def createHeader(self, sv, stamp):
2754 if(not stamp['time']):
2764 headline_stamp = '<div class="stamp">{0} {1} {2} {3}</div>\n'
2765 self.html += headline_stamp.format(stamp['host'], stamp['kernel'],
2766 stamp['mode'], stamp['time'])
2767 if 'man' in stamp and 'plat' in stamp and 'cpu' in stamp and \
2768 stamp['man'] and stamp['plat'] and stamp['cpu']:
2769 headline_sysinfo = '<div class="stamp sysinfo">{0} {1} <i>with</i> {2}</div>\n'
2770 self.html += headline_sysinfo.format(stamp['man'], stamp['plat'], stamp['cpu'])
3007 self.stamp = ''
3028 self.stamp = line
3062 m = re.match(self.stampfmt, self.stamp)
3063 if not self.stamp or not m:
3064 doError('data does not include the expected stamp')
3065 data.stamp = {'time': '', 'host': '', 'mode': ''}
3069 data.stamp['time'] = dt.strftime('%B %d %Y, %I:%M:%S %p')
3070 data.stamp['host'] = m.group('host')
3071 data.stamp['mode'] = m.group('mode')
3072 data.stamp['kernel'] = m.group('kernel')
3080 data.stamp[key] = val
3081 sv.hostname = data.stamp['host']
3082 sv.suspendmode = data.stamp['mode']
3094 data.stamp['mode'] = sv.suspendmode
3098 if not sv.stamp:
3099 sv.stamp = data.stamp
3118 data.stamp['wifi'] = m.group('d')
3896 tp.stamp = datetime.now().strftime('# suspend-%m%d%y-%H%M%S localhost mem unknown')
3921 sysvals.stamp['kernel'] = m.group('k')
3926 sysvals.stamp['mode'] = sysvals.suspendmode = m.group('m')
4289 .stamp {width: 100%;text-align:center;background:#888;line-height:30px;color:white;font: 25px Arial;}\n\
4381 html += '<div class="stamp">%s (%d tests: %s)</div>\n' % (title, len(testruns), ', '.join(desc))
4513 html += '<div class="stamp">%s (%s devices > %d ms)</div><table>\n' % \
4554 html += '<div class="stamp">%s (%s)</div><table>\n' % (title, subtitle)
4651 devtl.createHeader(sysvals, testruns[0].stamp)
4960 kernel = sv.stamp['kernel']
4992 .stamp {width:100%;text-align:center;background:gray;line-height:30px;color:white;font:25px Arial;}\n\
4993 .stamp.sysinfo {font:10px Arial;}\n\
6143 if not sysvals.stamp:
6144 pprint('ERROR: data does not include the expected stamp')
6149 for key in sorted(sysvals.stamp):
6151 sysvals.vprint(' %-8s : %s' % (key.upper(), sysvals.stamp[key]))
6182 stamp = data.stamp
6183 stamp['suspend'], stamp['resume'] = data.getTimeValues()
6185 stamp['fwsuspend'], stamp['fwresume'] = data.fwSuspend, data.fwResume
6187 stamp['error'] = error
6188 return (testruns, stamp)
6207 testruns, stamp = processData()
6209 return stamp
6239 testruns, stamp = processData(True, quiet)
6243 sysvals.outputResult(stamp, n)
6244 if 'error' in stamp:
6280 sysinfo = find_in_html(html, '<div class="stamp sysinfo">', '</div>')
6281 line = find_in_html(html, '<div class="stamp">', '</div>')
7084 stamp = rerunTest(sysvals.outdir)
7085 sysvals.outputResult(stamp)