Searched refs:trace_dispatch_return (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Lib/ |
D | profile.py | 272 return self.trace_dispatch_return(rframe, t) 284 self.trace_dispatch_return(rframe, 0) 310 def trace_dispatch_return(self, frame, t): member in Profile 313 self.trace_dispatch_return(self.cur[-2], 0) 351 "return": trace_dispatch_return, 353 "c_exception": trace_dispatch_return, # the C function returned 354 "c_return": trace_dispatch_return,
|
/external/python/cpython3/Lib/ |
D | profile.py | 251 return self.trace_dispatch_return(rframe, t) 263 self.trace_dispatch_return(rframe, 0) 289 def trace_dispatch_return(self, frame, t): member in Profile 292 self.trace_dispatch_return(self.cur[-2], 0) 330 "return": trace_dispatch_return, 332 "c_exception": trace_dispatch_return, # the C function returned 333 "c_return": trace_dispatch_return,
|
/external/python/cpython2/Lib/hotshot/ |
D | stats.py | 46 p.trace_dispatch_return(frame, taccum * .000001)
|