Lines Matching refs:ftemp
3062 self.ftemp = dict()
3212 if(pid not in testrun[testidx].ftemp):
3213 testrun[testidx].ftemp[pid] = []
3214 testrun[testidx].ftemp[pid].append(FTraceCallGraph(pid, sysvals))
3216 cg = testrun[testidx].ftemp[pid][-1]
3219 testrun[testidx].ftemp[pid].append(FTraceCallGraph(pid, sysvals))
3221 testrun[testidx].ftemp[pid][-1].addLine(t)
3226 for pid in test.ftemp:
3227 for cg in test.ftemp[pid]:
3538 if(key not in testrun.ftemp):
3539 testrun.ftemp[key] = []
3540 testrun.ftemp[key].append(FTraceCallGraph(pid, sysvals))
3542 cg = testrun.ftemp[key][-1]
3545 testrun.ftemp[key].append(FTraceCallGraph(pid, sysvals))
3547 testrun.ftemp[key][-1].addLine(t)
3629 for key in sorted(test.ftemp):
3631 for cg in test.ftemp[key]: