Home
last modified time | relevance | path

Searched refs:stack_depth (Results 1 – 7 of 7) sorted by relevance

/art/runtime/native/
Ddalvik_system_VMDebug.cc479 static void VMDebug_setAllocTrackerStackDepth(JNIEnv* env, jclass, jint stack_depth) { in VMDebug_setAllocTrackerStackDepth() argument
481 if (stack_depth < 0 || in VMDebug_setAllocTrackerStackDepth()
482 static_cast<size_t>(stack_depth) > gc::AllocRecordObjectMap::kMaxSupportedStackDepth) { in VMDebug_setAllocTrackerStackDepth()
486 stack_depth); in VMDebug_setAllocTrackerStackDepth()
488 runtime->GetHeap()->SetAllocTrackerStackDepth(static_cast<size_t>(stack_depth)); in VMDebug_setAllocTrackerStackDepth()
/art/tools/jvmti-agents/ti-alloc-sample/
Dti_alloc_sample.cc335 jint stack_depth; in logVMObjectAlloc() local
340 &stack_depth); in logVMObjectAlloc()
344 for (int i = stack_depth - 1; i >= 0; --i) { in logVMObjectAlloc()
/art/test/1922-owned-monitors-info/
Downed_monitors.cc112 monitors[i].stack_depth, in Java_art_Test1922_getOwnedMonitorStackDepthInfo()
/art/runtime/
Ddebugger.cc1053 size_t stack_depth = record->GetDepth(); in GetRecentAllocations() local
1059 Append1BE(bytes, stack_depth); in GetRecentAllocations()
1061 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) { in GetRecentAllocations()
Dthread.h652 jobjectArray output_array = nullptr, int* stack_depth = nullptr)
Dthread.cc2984 int* stack_depth) { in InternalStackTraceToStackTraceElementArray() argument
3011 if (stack_depth != nullptr) { in InternalStackTraceToStackTraceElementArray()
3012 *stack_depth = depth; in InternalStackTraceToStackTraceElementArray()
/art/openjdkjvmti/include/
Djvmti.h527 jint stack_depth; member