Lines Matching refs:stack_info
399 jvmtiStackInfo& stack_info = stack_info_array.get()[index]; in GetAllStackTraces() local
400 memset(&stack_info, 0, sizeof(jvmtiStackInfo)); in GetAllStackTraces()
405 stack_info.thread = nullptr; in GetAllStackTraces()
406 stack_info.state = JVMTI_THREAD_STATE_SUSPENDED; in GetAllStackTraces()
410 stack_info.frame_count = 0; in GetAllStackTraces()
411 stack_info.frame_buffer = nullptr; in GetAllStackTraces()
427 stack_info.frame_count = static_cast<jint>(collected_frames); in GetAllStackTraces()
428 stack_info.frame_buffer = frame_info; in GetAllStackTraces()
442 jvmtiStackInfo* stack_info = reinterpret_cast<jvmtiStackInfo*>(chunk_data); in GetAllStackTraces() local
444 memcpy(stack_info, stack_info_array.get(), sizeof(jvmtiStackInfo) * data.frames.size()); in GetAllStackTraces()
451 jvmtiStackInfo& new_stack_info = stack_info[i]; in GetAllStackTraces()
466 *stack_info_ptr = stack_info; in GetAllStackTraces()
558 jvmtiStackInfo& stack_info = stack_info_array.get()[index]; in GetThreadListStackTraces() local
559 memset(&stack_info, 0, sizeof(jvmtiStackInfo)); in GetThreadListStackTraces()
567 stack_info.thread = nullptr; in GetThreadListStackTraces()
568 stack_info.state = JVMTI_THREAD_STATE_SUSPENDED; in GetThreadListStackTraces()
572 stack_info.frame_count = 0; in GetThreadListStackTraces()
573 stack_info.frame_buffer = nullptr; in GetThreadListStackTraces()
589 stack_info.frame_count = static_cast<jint>(collected_frames); in GetThreadListStackTraces()
590 stack_info.frame_buffer = frame_info; in GetThreadListStackTraces()
605 jvmtiStackInfo* stack_info = reinterpret_cast<jvmtiStackInfo*>(chunk_data); in GetThreadListStackTraces() local
625 stack_info[i].thread = reinterpret_cast<JNIEnv*>(soa.Env())->NewLocalRef(thread_list[i]); in GetThreadListStackTraces()
626 stack_info[i].state = started ? kTerminatedState : kStartedState; in GetThreadListStackTraces()
627 stack_info[i].frame_count = 0; in GetThreadListStackTraces()
628 stack_info[i].frame_buffer = nullptr; in GetThreadListStackTraces()
634 jvmtiStackInfo& new_stack_info = stack_info[i]; in GetThreadListStackTraces()
649 *stack_info_ptr = stack_info; in GetThreadListStackTraces()