Lines Matching full:instrumentation

70   static bool HasFieldReadListeners(const instrumentation::Instrumentation* instrumentation)  in HasFieldReadListeners()  argument
72 return instrumentation->HasFieldReadListeners(); in HasFieldReadListeners()
76 static bool HasFieldWriteListeners(const instrumentation::Instrumentation* instrumentation) in HasFieldWriteListeners() argument
78 return instrumentation->HasFieldWriteListeners(); in HasFieldWriteListeners()
82 static bool HasBranchListeners(const instrumentation::Instrumentation* instrumentation) in HasBranchListeners() argument
84 return instrumentation->HasBranchListeners(); in HasBranchListeners()
96 static bool NeedsMethodExitEvent(const instrumentation::Instrumentation* instrumentation) in NeedsMethodExitEvent() argument
98 return interpreter::NeedsMethodExitEvent(instrumentation); in NeedsMethodExitEvent()
113 const instrumentation::Instrumentation* instrumentation) in Branch() argument
115 instrumentation->Branch(self, method, dex_pc, dex_pc_offset); in Branch()
120 const instrumentation::Instrumentation* instrumentation) in ExceptionHandledEvent() argument
127 instrumentation->ExceptionHandledEvent(self, exception.Get()); in ExceptionHandledEvent()
151 const instrumentation::Instrumentation* instrumentation, in DoDexPcMoveEvent() argument
154 DCHECK(instrumentation->HasDexPcListeners()); in DoDexPcMoveEvent()
161 instrumentation->DexPcMovedEvent(self, in DoDexPcMoveEvent()
182 const instrumentation::Instrumentation* instrumentation, in SendMethodExitEvents() argument
186 return interpreter::SendMethodExitEvents(self, instrumentation, frame, method, result); in SendMethodExitEvents()