Home | History | Annotate | Download | only in Target

Lines Matching refs:stack_id

599 CompareStackID (const StackFrameSP &stack_sp, const StackID &stack_id)
601 return stack_sp->GetStackID() < stack_id;
605 StackFrameList::GetFrameWithStackID (const StackID &stack_id)
609 if (stack_id.IsValid())
618 collection::const_iterator pos = std::lower_bound (begin, end, stack_id, CompareStackID);
619 if (pos != end && (*pos)->GetStackID() == stack_id)
622 if (m_frames.back()->GetStackID() < stack_id)
628 if (frame_sp && frame_sp->GetStackID() == stack_id)