(self)
| 2158 | callee = caller |
| 2159 | |
| 2160 | def parse(self): |
| 2161 | profile = self.profile |
| 2162 | profile[SAMPLES] = 0 |
| 2163 | |
| 2164 | self.parse_symbols() |
| 2165 | self.parse_callstacks() |
| 2166 | |
| 2167 | # Compute derived events |
| 2168 | profile.validate() |
| 2169 | profile.find_cycles() |
| 2170 | profile.ratio(TIME_RATIO, SAMPLES) |
| 2171 | profile.call_ratios(SAMPLES2) |
| 2172 | profile.integrate(TOTAL_TIME_RATIO, TIME_RATIO) |
| 2173 | |
| 2174 | return profile |
| 2175 | |
| 2176 | |
| 2177 | class AQtimeTable: |
nothing calls this directly
no test coverage detected