Lines Matching refs:line
354 for line in cg.list:
355 line.time = self.trimTimeVal(line.time, t0, dT, left)
386 for line in cg.list:
387 line.time -= tZero
713 def setDepth(self, line): argument
714 if(line.fcall and not line.freturn):
715 line.depth = self.depth
717 elif(line.freturn and not line.fcall):
719 line.depth = self.depth
721 line.depth = self.depth
722 def addLine(self, line, match): argument
724 self.setDepth(line)
725 if(line.depth == 0 and line.freturn):
727 self.start = line.time
728 self.end = line.time
729 self.list.append(line)
742 window = '(%f - %f)' % (self.start, line.time)
750 self.list.append(line)
752 self.start = line.time
1066 for line in tf:
1068 line = line.replace('\r\n', '')
1070 m = re.match(sysvals.stampfmt, line)
1076 if(re.match(sysvals.firmwarefmt, line)):
1082 m = re.match(sysvals.tracertypefmt, line)
1088 m = re.match(testrun[testidx].ftrace_line_fmt, line)
1292 for line in tf:
1294 line = line.replace('\r\n', '')
1296 m = re.match(sysvals.stampfmt, line)
1307 m = re.match(sysvals.firmwarefmt, line)
1315 m = re.match(sysvals.tracertypefmt, line)
1321 m = re.match(sysvals.postresumefmt, line)
1328 m = re.match(testrun.ftrace_line_fmt, line)
1616 for line in lf:
1617 line = line.replace('\r\n', '')
1618 idx = line.find('[')
1620 line = line[idx:]
1621 m = re.match(sysvals.stampfmt, line)
1630 m = re.match(sysvals.firmwarefmt, line)
1637 m = re.match('[ \t]*(\[ *)(?P<ktime>[0-9\.]*)(\]) (?P<msg>.*)', line)
1639 data.dmesgtext.append(line)
1645 vprint('ignoring dmesg line: %s' % line.replace('\n', ''))
1656 for line in data.dmesgtext:
1658 '(?P<f>.*)\+ @ .*, parent: .*', line)
1664 j = data.dmesgtext.index(line)
1665 data.dmesgtext[i] = line
1667 last = line
1741 for line in data.dmesgtext:
1744 m = re.match('[ \t]*(\[ *)(?P<ktime>[0-9\.]*)(\]) (?P<msg>.*)', line)
1751 line.replace('\n', ''), 'dmesg')
2350 ….stamp {width: 100%;text-align:center;background-color:gray;line-height:30px;color:white;font: 25p…
2358 t4 {color:black;font: bold 30px Times;line-height:60px;white-space:nowrap;}\n\
2377 ….thread {position: absolute; height: '+'%.3f'%thread_height+'%; overflow: hidden; line-height: 30p…
2380 …te;opacity: 0.3;height: '+'%.3f'%thread_height+'%;width:0;overflow:hidden;line-height:30px;text-al…
2441 for line in cg.list:
2442 if(line.length < 0.000000001):
2445 flen = '<n>(%.3f ms @ %.3f)</n>' % (line.length*1000, \
2446 line.time*1000)
2447 if(line.freturn and line.fcall):
2448 hf.write(html_func_leaf.format(line.name, flen))
2449 elif(line.freturn):
2452 hf.write(html_func_start.format(num, line.name, flen))
2954 line = os.popen(sysvals.adb+' shell cat '+\
2956 modes = string.split(line)