Lines Matching refs:stop_idx
160 …std::pair<bool,uint64_t> stop_idx = {m_options.m_stop_idx.OptionWasSet(),m_options.m_stop_idx.GetC… in DoExecute() local
170 stop_idx.second = history.GetSize() - 1; in DoExecute()
172 else if (stop_idx.first) in DoExecute()
174 start_idx.second = stop_idx.second; in DoExecute()
175 stop_idx.second = history.GetSize() - 1; in DoExecute()
180 stop_idx.second = history.GetSize() - 1; in DoExecute()
185 if (!start_idx.first && !stop_idx.first && !count.first) in DoExecute()
188 stop_idx.second = history.GetSize() - 1; in DoExecute()
194 stop_idx.second = start_idx.second + count.second - 1; in DoExecute()
196 else if (!stop_idx.first) in DoExecute()
198 stop_idx.second = history.GetSize() - 1; in DoExecute()
201 else if (stop_idx.first) in DoExecute()
205 if (stop_idx.second >= count.second) in DoExecute()
206 start_idx.second = stop_idx.second - count.second + 1; in DoExecute()
214 stop_idx.second = count.second - 1; in DoExecute()
217 history.Dump(result.GetOutputStream(), start_idx.second, stop_idx.second); in DoExecute()