reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Commands/CommandObjectFrame.cpp
  314       frame_idx = thread->GetSelectedFrameIndex();
  315       if (frame_idx == UINT32_MAX)
  316         frame_idx = 0;
  319         if (static_cast<int32_t>(frame_idx) >=
  321           frame_idx += *m_options.relative_frame_offset;
  323           if (frame_idx == 0) {
  330             frame_idx = 0;
  338         if (static_cast<int32_t>(num_frames - frame_idx) >
  340           frame_idx += *m_options.relative_frame_offset;
  342           if (frame_idx == num_frames - 1) {
  349             frame_idx = num_frames - 1;
  364         if (command[0].ref().getAsInteger(0, frame_idx)) {
  371         frame_idx = thread->GetSelectedFrameIndex();
  372         if (frame_idx == UINT32_MAX) {
  373           frame_idx = 0;
  379         frame_idx, result.GetOutputStream());
  385                                    frame_idx);