Searched refs:stack_depth (Results 1 – 7 of 7) sorted by relevance
505 static void VMDebug_setAllocTrackerStackDepth(JNIEnv* env, jclass, jint stack_depth) { in VMDebug_setAllocTrackerStackDepth() argument507 if (stack_depth < 0 || in VMDebug_setAllocTrackerStackDepth()508 static_cast<size_t>(stack_depth) > gc::AllocRecordObjectMap::kMaxSupportedStackDepth) { in VMDebug_setAllocTrackerStackDepth()512 stack_depth); in VMDebug_setAllocTrackerStackDepth()514 runtime->GetHeap()->SetAllocTrackerStackDepth(static_cast<size_t>(stack_depth)); in VMDebug_setAllocTrackerStackDepth()
335 jint stack_depth; in logVMObjectAlloc() local340 &stack_depth); in logVMObjectAlloc()344 for (int i = stack_depth - 1; i >= 0; --i) { in logVMObjectAlloc()
112 monitors[i].stack_depth, in Java_art_Test1922_getOwnedMonitorStackDepthInfo()
1044 size_t stack_depth = record->GetDepth(); in GetRecentAllocations() local1050 Append1BE(bytes, stack_depth); in GetRecentAllocations()1052 for (size_t stack_frame = 0; stack_frame < stack_depth; ++stack_frame) { in GetRecentAllocations()
3136 int* stack_depth) { in InternalStackTraceToStackTraceElementArray() argument3163 if (stack_depth != nullptr) { in InternalStackTraceToStackTraceElementArray()3164 *stack_depth = depth; in InternalStackTraceToStackTraceElementArray()
742 jobjectArray output_array = nullptr, int* stack_depth = nullptr)
527 jint stack_depth; member