Lines Matching refs:stack_info

442     jvmtiStackInfo& stack_info = stack_info_array.get()[index];  in GetAllStackTraces()  local
443 memset(&stack_info, 0, sizeof(jvmtiStackInfo)); in GetAllStackTraces()
448 stack_info.thread = nullptr; in GetAllStackTraces()
449 stack_info.state = JVMTI_THREAD_STATE_SUSPENDED; in GetAllStackTraces()
453 stack_info.frame_count = 0; in GetAllStackTraces()
454 stack_info.frame_buffer = nullptr; in GetAllStackTraces()
470 stack_info.frame_count = static_cast<jint>(collected_frames); in GetAllStackTraces()
471 stack_info.frame_buffer = frame_info; in GetAllStackTraces()
485 jvmtiStackInfo* stack_info = reinterpret_cast<jvmtiStackInfo*>(chunk_data); in GetAllStackTraces() local
487 memcpy(stack_info, stack_info_array.get(), sizeof(jvmtiStackInfo) * data.frames.size()); in GetAllStackTraces()
494 jvmtiStackInfo& new_stack_info = stack_info[i]; in GetAllStackTraces()
509 *stack_info_ptr = stack_info; in GetAllStackTraces()
601 jvmtiStackInfo& stack_info = stack_info_array.get()[index]; in GetThreadListStackTraces() local
602 memset(&stack_info, 0, sizeof(jvmtiStackInfo)); in GetThreadListStackTraces()
610 stack_info.thread = nullptr; in GetThreadListStackTraces()
611 stack_info.state = JVMTI_THREAD_STATE_SUSPENDED; in GetThreadListStackTraces()
615 stack_info.frame_count = 0; in GetThreadListStackTraces()
616 stack_info.frame_buffer = nullptr; in GetThreadListStackTraces()
632 stack_info.frame_count = static_cast<jint>(collected_frames); in GetThreadListStackTraces()
633 stack_info.frame_buffer = frame_info; in GetThreadListStackTraces()
648 jvmtiStackInfo* stack_info = reinterpret_cast<jvmtiStackInfo*>(chunk_data); in GetThreadListStackTraces() local
668 stack_info[i].thread = reinterpret_cast<JNIEnv*>(soa.Env())->NewLocalRef(thread_list[i]); in GetThreadListStackTraces()
669 stack_info[i].state = started ? kTerminatedState : kStartedState; in GetThreadListStackTraces()
670 stack_info[i].frame_count = 0; in GetThreadListStackTraces()
671 stack_info[i].frame_buffer = nullptr; in GetThreadListStackTraces()
677 jvmtiStackInfo& new_stack_info = stack_info[i]; in GetThreadListStackTraces()
692 *stack_info_ptr = stack_info; in GetThreadListStackTraces()