Searched refs:old_stack_info (Results 1 – 1 of 1) sorted by relevance
497 jvmtiStackInfo& old_stack_info = stack_info_array.get()[i]; in GetAllStackTraces() local504 if (old_stack_info.frame_count > 0) { in GetAllStackTraces()506 size_t frames_size = static_cast<size_t>(old_stack_info.frame_count) * sizeof(jvmtiFrameInfo); in GetAllStackTraces()507 memcpy(frame_info, old_stack_info.frame_buffer, frames_size); in GetAllStackTraces()509 frame_info += old_stack_info.frame_count; in GetAllStackTraces()677 jvmtiStackInfo& old_stack_info = stack_info_array.get()[f_index]; in GetThreadListStackTraces() local680 memcpy(&new_stack_info, &old_stack_info, sizeof(jvmtiStackInfo)); in GetThreadListStackTraces()682 if (old_stack_info.frame_count > 0) { in GetThreadListStackTraces()685 static_cast<size_t>(old_stack_info.frame_count) * sizeof(jvmtiFrameInfo); in GetThreadListStackTraces()686 memcpy(frame_info, old_stack_info.frame_buffer, frames_size); in GetThreadListStackTraces()[all …]