(self)
| 161 | return |
| 162 | |
| 163 | def get_top_level_stats(self): |
| 164 | for func, (cc, nc, tt, ct, callers) in self.stats.items(): |
| 165 | self.total_calls += nc |
| 166 | self.prim_calls += cc |
| 167 | self.total_tt += tt |
| 168 | if ("jprofile", 0, "profiler") in callers: |
| 169 | self.top_level.add(func) |
| 170 | if len(func_std_string(func)) > self.max_name_len: |
| 171 | self.max_name_len = len(func_std_string(func)) |
| 172 | |
| 173 | def add(self, *arg_list): |
| 174 | if not arg_list: |
no test coverage detected