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()
92 instrumented = true; in Java_Main_waitAndDeopt()
/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.cc849 void Instrumentation::SetEntrypointsInstrumented(bool instrumented) { in SetEntrypointsInstrumented() argument
857 SetQuickAllocEntryPointsInstrumented(instrumented); in SetEntrypointsInstrumented()
859 alloc_entrypoints_instrumented_ = instrumented; in SetEntrypointsInstrumented()
862 SetQuickAllocEntryPointsInstrumented(instrumented); in SetEntrypointsInstrumented()
872 alloc_entrypoints_instrumented_ = instrumented; in SetEntrypointsInstrumented()
Dinstrumentation.h598 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.cc1798 bool instrumented, in AllocateInternalWithGc() argument
1814 if (UNLIKELY(instrumented)) { in AllocateInternalWithGc()
1836 (!instrumented && EntrypointsInstrumented())) { in AllocateInternalWithGc()
1868 (!instrumented && EntrypointsInstrumented())) { in AllocateInternalWithGc()
1894 (!instrumented && EntrypointsInstrumented())) { in AllocateInternalWithGc()
1917 (!instrumented && EntrypointsInstrumented())) { in AllocateInternalWithGc()
Dheap.h1054 bool instrumented,