Lines Matching refs:old_stack_info
493 jvmtiStackInfo& old_stack_info = stack_info_array.get()[i]; in GetAllStackTraces() local
500 if (old_stack_info.frame_count > 0) { in GetAllStackTraces()
502 size_t frames_size = static_cast<size_t>(old_stack_info.frame_count) * sizeof(jvmtiFrameInfo); in GetAllStackTraces()
503 memcpy(frame_info, old_stack_info.frame_buffer, frames_size); in GetAllStackTraces()
505 frame_info += old_stack_info.frame_count; in GetAllStackTraces()
676 jvmtiStackInfo& old_stack_info = stack_info_array.get()[f_index]; in GetThreadListStackTraces() local
679 memcpy(&new_stack_info, &old_stack_info, sizeof(jvmtiStackInfo)); in GetThreadListStackTraces()
681 if (old_stack_info.frame_count > 0) { in GetThreadListStackTraces()
684 static_cast<size_t>(old_stack_info.frame_count) * sizeof(jvmtiFrameInfo); in GetThreadListStackTraces()
685 memcpy(frame_info, old_stack_info.frame_buffer, frames_size); in GetThreadListStackTraces()
687 frame_info += old_stack_info.frame_count; in GetThreadListStackTraces()