Lines Matching refs:ftemp
2980 self.ftemp = dict()
3130 if(pid not in testrun[testidx].ftemp):
3131 testrun[testidx].ftemp[pid] = []
3132 testrun[testidx].ftemp[pid].append(FTraceCallGraph(pid, sysvals))
3134 cg = testrun[testidx].ftemp[pid][-1]
3137 testrun[testidx].ftemp[pid].append(FTraceCallGraph(pid, sysvals))
3139 testrun[testidx].ftemp[pid][-1].addLine(t)
3144 for pid in test.ftemp:
3145 for cg in test.ftemp[pid]:
3455 if(key not in testrun.ftemp):
3456 testrun.ftemp[key] = []
3457 testrun.ftemp[key].append(FTraceCallGraph(pid, sysvals))
3459 cg = testrun.ftemp[key][-1]
3462 testrun.ftemp[key].append(FTraceCallGraph(pid, sysvals))
3464 testrun.ftemp[key][-1].addLine(t)
3546 for key in sorted(test.ftemp):
3548 for cg in test.ftemp[key]: