Home
last modified time | relevance | path

Searched refs:instrumented (Results 1 – 8 of 8) sorted by relevance

/art/test/2011-stack-walk-concurrent-instrument/
Dstack_walk_concurrent.cc31 std::atomic<bool> instrumented = false; variable
37 while (!instrumented) { in WaitForInstrument()
68 instrumented = false; in Java_Main_resetTest()
94 instrumented = true; in Java_Main_waitAndInstrumentStack()
/art/runtime/
Dalloc_instrumentation.md3 dispatch, and templatized allocation code that can be used to generate either instrumented
7 either points to instrumented or uninstrumented allocation routines. The instrumented code has a
Dinstrumentation.cc992 void Instrumentation::SetEntrypointsInstrumented(bool instrumented) { in SetEntrypointsInstrumented() argument
1000 SetQuickAllocEntryPointsInstrumented(instrumented); in SetEntrypointsInstrumented()
1002 alloc_entrypoints_instrumented_ = instrumented; in SetEntrypointsInstrumented()
1005 SetQuickAllocEntryPointsInstrumented(instrumented); in SetEntrypointsInstrumented()
1015 alloc_entrypoints_instrumented_ = instrumented; in SetEntrypointsInstrumented()
Dinstrumentation.h611 void SetEntrypointsInstrumented(bool instrumented) NO_THREAD_SAFETY_ANALYSIS;
/art/runtime/entrypoints/quick/
Dquick_alloc_entrypoints.h36 void SetQuickAllocEntryPointsInstrumented(bool instrumented)
Dquick_alloc_entrypoints.cc166 void SetQuickAllocEntryPoints##suffix(QuickEntryPoints* qpoints, bool instrumented) { \
167 if (instrumented) { \
213 void SetQuickAllocEntryPointsInstrumented(bool instrumented) { in SetQuickAllocEntryPointsInstrumented() argument
214 entry_points_instrumented = instrumented; in SetQuickAllocEntryPointsInstrumented()
/art/runtime/gc/
Dheap.cc1886 bool instrumented, in AllocateInternalWithGc() argument
1902 if (UNLIKELY(instrumented)) { in AllocateInternalWithGc()
1924 (!instrumented && EntrypointsInstrumented())) { in AllocateInternalWithGc()
1956 (!instrumented && EntrypointsInstrumented())) { in AllocateInternalWithGc()
1983 (!instrumented && EntrypointsInstrumented())) { in AllocateInternalWithGc()
2006 (!instrumented && EntrypointsInstrumented())) { in AllocateInternalWithGc()
Dheap.h1080 bool instrumented,