Home
last modified time | relevance | path

Searched refs:candidate_idx (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectFrame.cpp284 uint32_t candidate_idx = frame_idx; in DoExecute() local
287 if (candidate_idx == 0 && *m_options.relative_frame_offset == -1) { in DoExecute()
288 candidate_idx = UINT32_MAX; in DoExecute()
291 candidate_idx += *m_options.relative_frame_offset; in DoExecute()
292 if (auto candidate_sp = thread->GetStackFrameAtIndex(candidate_idx)) { in DoExecute()
298 candidate_idx = UINT32_MAX; in DoExecute()
301 if (candidate_idx != UINT32_MAX) in DoExecute()
302 m_options.relative_frame_offset = candidate_idx - frame_idx; in DoExecute()