Lines Matching refs:stamp
146 stamp = 0 variable in SystemValues
1240 self.stamp = 0
2444 def createHeader(self, sv, stamp): argument
2445 if(not stamp['time']):
2456 self.html += headline_stamp.format(stamp['host'], stamp['kernel'],
2457 stamp['mode'], stamp['time'])
2458 if 'man' in stamp and 'plat' in stamp and 'cpu' in stamp and \
2459 stamp['man'] and stamp['plat'] and stamp['cpu']:
2461 self.html += headline_sysinfo.format(stamp['man'], stamp['plat'], stamp['cpu'])
2695 self.stamp = ''
2719 self.stamp = line
2751 m = re.match(self.stampfmt, self.stamp)
2752 data.stamp = {'time': '', 'host': '', 'mode': ''}
2756 data.stamp['time'] = dt.strftime('%B %d %Y, %I:%M:%S %p')
2757 data.stamp['host'] = m.group('host')
2758 data.stamp['mode'] = m.group('mode')
2759 data.stamp['kernel'] = m.group('kernel')
2767 data.stamp[key] = val
2768 sv.hostname = data.stamp['host']
2769 sv.suspendmode = data.stamp['mode']
2777 data.stamp['mode'] = sv.suspendmode
2787 if not sv.stamp:
2788 sv.stamp = data.stamp
3519 tp.stamp = datetime.now().strftime('# suspend-%m%d%y-%H%M%S localhost mem unknown')
3543 sysvals.stamp['kernel'] = m.group('k')
3546 sysvals.stamp['mode'] = sysvals.suspendmode = m.group('m')
3908 ….stamp {width: 100%;text-align:center;background:#888;line-height:30px;color:white;font: 25px Aria…
4262 devtl.createHeader(sysvals, testruns[0].stamp)
4566 kernel = sv.stamp['kernel']
4598 ….stamp {width:100%;text-align:center;background:gray;line-height:30px;color:white;font:25px Arial;…
4599 .stamp.sysinfo {font:10px Arial;}\n\
5802 for key in sorted(sysvals.stamp):
5804 sysvals.vprint(' %-8s : %s' % (key.upper(), sysvals.stamp[key]))
5850 stamp = data.stamp
5851 stamp['suspend'], stamp['resume'] = data.getTimeValues()
5853 stamp['fwsuspend'], stamp['fwresume'] = data.fwSuspend, data.fwResume
5855 stamp['error'] = error
5856 return (testruns, stamp)
5875 testruns, stamp = processData(False)
5877 return stamp
5894 testruns, stamp = processData(True)
5898 stamp = testdata[0]
5901 sysvals.outputResult(stamp, n)
5902 if 'error' in stamp:
6693 stamp = rerunTest(sysvals.outdir) variable
6694 sysvals.outputResult(stamp)