Lines Matching refs:start_idx
159 …std::pair<bool,uint64_t> start_idx = {m_options.m_start_idx.OptionWasSet(),m_options.m_start_idx.G… in DoExecute() local
165 if (start_idx.first && start_idx.second == UINT64_MAX) in DoExecute()
169 start_idx.second = history.GetSize() - count.second; in DoExecute()
174 start_idx.second = stop_idx.second; in DoExecute()
179 start_idx.second = 0; in DoExecute()
185 if (!start_idx.first && !stop_idx.first && !count.first) in DoExecute()
187 start_idx.second = 0; in DoExecute()
190 else if (start_idx.first) in DoExecute()
194 stop_idx.second = start_idx.second + count.second - 1; in DoExecute()
206 start_idx.second = stop_idx.second - count.second + 1; in DoExecute()
208 start_idx.second = 0; in DoExecute()
213 start_idx.second = 0; in DoExecute()
217 history.Dump(result.GetOutputStream(), start_idx.second, stop_idx.second); in DoExecute()