HomeSort by relevance Sort by last modified time
    Searched full:instrumentation_event (Results 1 - 4 of 4) sorted by null

  /art/runtime/
instrumentation_test.cc 205 void TestEvent(uint32_t instrumentation_event) {
206 TestEvent(instrumentation_event, nullptr, nullptr, false);
209 void TestEvent(uint32_t instrumentation_event,
219 instr->AddListener(&listener, instrumentation_event);
226 EXPECT_TRUE(HasEventListener(instr, instrumentation_event));
227 EXPECT_FALSE(DidListenerReceiveEvent(listener, instrumentation_event, with_object));
229 instrumentation_event,
235 EXPECT_TRUE(DidListenerReceiveEvent(listener, instrumentation_event, with_object));
241 instr->RemoveListener(&listener, instrumentation_event);
245 EXPECT_FALSE(HasEventListener(instr, instrumentation_event));
    [all...]
debugger.h 185 void SetInstrumentationEvent(uint32_t instrumentation_event) {
186 instrumentation_event_ = instrumentation_event;
192 // TODO we could use a union to hold the instrumentation_event and the method since they
    [all...]
debugger.cc     [all...]
  /art/runtime/jdwp/
jdwp_event.cc 228 uint32_t instrumentation_event = GetInstrumentationEventFor(pEvent->eventKind); local
229 if (instrumentation_event != 0) {
232 req.SetInstrumentationEvent(instrumentation_event);
340 uint32_t instrumentation_event = GetInstrumentationEventFor(pEvent->eventKind); local
341 if (instrumentation_event != 0) {
344 req.SetInstrumentationEvent(instrumentation_event);
    [all...]

Completed in 150 milliseconds