Lines Matching defs:end_idx
227 void StackFrameList::GetOnlyConcreteFramesUpTo(uint32_t end_idx,
230 assert(m_frames.size() <= end_idx && "Expected there to be frames to fill");
232 if (end_idx < m_concrete_frames_fetched)
235 uint32_t num_frames = unwinder.GetFramesUpTo(end_idx);
236 if (num_frames <= end_idx + 1) {
440 bool StackFrameList::GetFramesUpTo(uint32_t end_idx,
449 if (m_frames.size() > end_idx || GetAllFramesFetched())
455 GetOnlyConcreteFramesUpTo(end_idx, unwinder);
464 // to do that if end_idx is 0 since in that case we always get the first
466 // end_idx is UINT32_MAX that means get all, so just do that...
469 if (end_idx > 0 && end_idx != UINT32_MAX) {
472 if (end_idx > 0)
473 end_idx += inlined_depth;
566 } while (m_frames.size() - 1 < end_idx);