Home | History | Annotate | Download | only in Target

Lines Matching refs:end_idx

254 StackFrameList::GetFramesUpTo(uint32_t end_idx)
261 if (m_frames.size() > end_idx || GetAllFramesFetched())
272 // frames to fetch. However, we don't need ot do that if end_idx is 0 since in that case we always
273 // get the first concrete frame and all the inlined frames below it... And of course, if end_idx is
277 if (end_idx > 0 && end_idx != UINT32_MAX)
282 if (end_idx > 0)
283 end_idx += inlined_depth;
374 } while (m_frames.size() - 1 < end_idx);
449 if (end_idx < m_concrete_frames_fetched)
452 uint32_t num_frames = unwinder->GetFramesUpTo(end_idx);
453 if (num_frames <= end_idx + 1)