Lines Matching refs:second
153 if (start_idx.first && start_idx.second == UINT64_MAX) { in DoExecute()
155 start_idx.second = history.GetSize() - count.second; in DoExecute()
156 stop_idx.second = history.GetSize() - 1; in DoExecute()
158 start_idx.second = stop_idx.second; in DoExecute()
159 stop_idx.second = history.GetSize() - 1; in DoExecute()
161 start_idx.second = 0; in DoExecute()
162 stop_idx.second = history.GetSize() - 1; in DoExecute()
166 start_idx.second = 0; in DoExecute()
167 stop_idx.second = history.GetSize() - 1; in DoExecute()
170 stop_idx.second = start_idx.second + count.second - 1; in DoExecute()
172 stop_idx.second = history.GetSize() - 1; in DoExecute()
176 if (stop_idx.second >= count.second) in DoExecute()
177 start_idx.second = stop_idx.second - count.second + 1; in DoExecute()
179 start_idx.second = 0; in DoExecute()
183 start_idx.second = 0; in DoExecute()
184 stop_idx.second = count.second - 1; in DoExecute()
187 history.Dump(result.GetOutputStream(), start_idx.second, in DoExecute()
188 stop_idx.second); in DoExecute()