Lines Matching refs:ftemp
3172 self.ftemp = dict()
3326 if(pid not in testrun[testidx].ftemp):
3327 testrun[testidx].ftemp[pid] = []
3328 testrun[testidx].ftemp[pid].append(FTraceCallGraph(pid, sysvals))
3330 cg = testrun[testidx].ftemp[pid][-1]
3333 testrun[testidx].ftemp[pid].append(FTraceCallGraph(pid, sysvals))
3335 testrun[testidx].ftemp[pid][-1].addLine(t)
3340 for pid in test.ftemp:
3341 for cg in test.ftemp[pid]:
3707 if(key not in testrun.ftemp):
3708 testrun.ftemp[key] = []
3709 testrun.ftemp[key].append(FTraceCallGraph(pid, sysvals))
3711 cg = testrun.ftemp[key][-1]
3714 testrun.ftemp[key].append(FTraceCallGraph(pid, sysvals))
3716 testrun.ftemp[key][-1].addLine(t)
3797 for key in sorted(test.ftemp):
3799 for cg in test.ftemp[key]: