OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:instrumentation_event
(Results
1 - 4
of
4
) sorted by null
/art/runtime/
instrumentation_test.cc
223
void TestEvent(uint32_t
instrumentation_event
) {
224
TestEvent(
instrumentation_event
, nullptr, nullptr, false);
227
void TestEvent(uint32_t
instrumentation_event
,
237
instr->AddListener(&listener,
instrumentation_event
);
245
EXPECT_TRUE(HasEventListener(instr,
instrumentation_event
));
246
EXPECT_FALSE(DidListenerReceiveEvent(listener,
instrumentation_event
, with_object));
248
instrumentation_event
,
255
EXPECT_TRUE(DidListenerReceiveEvent(listener,
instrumentation_event
, with_object));
261
instr->RemoveListener(&listener,
instrumentation_event
);
265
EXPECT_FALSE(HasEventListener(instr,
instrumentation_event
));
[
all
...]
debugger.h
204
void SetInstrumentationEvent(uint32_t
instrumentation_event
) {
205
instrumentation_event_ =
instrumentation_event
;
211
// 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 79 milliseconds