Lines Matching refs:CurrentCommandIndex
164 UINT32 CurrentCommandIndex = MaxCommandIndex; in AcpiOsGetLine() local
341 if (!CurrentCommandIndex) in AcpiOsGetLine()
348 if (CurrentCommandIndex > PreviousCommandIndex) in AcpiOsGetLine()
350 CurrentCommandIndex = PreviousCommandIndex; in AcpiOsGetLine()
355 NextCommand = AcpiDbGetHistoryByIndex (CurrentCommandIndex); in AcpiOsGetLine()
368 PreviousCommandIndex = CurrentCommandIndex; in AcpiOsGetLine()
369 CurrentCommandIndex--; in AcpiOsGetLine()
381 if (CurrentCommandIndex < PreviousCommandIndex) in AcpiOsGetLine()
383 CurrentCommandIndex = PreviousCommandIndex; in AcpiOsGetLine()
388 if ((CurrentCommandIndex + 1) > MaxCommandIndex) in AcpiOsGetLine()
392 PreviousCommandIndex = CurrentCommandIndex; in AcpiOsGetLine()
396 PreviousCommandIndex = CurrentCommandIndex; in AcpiOsGetLine()
397 CurrentCommandIndex++; in AcpiOsGetLine()
401 NextCommand = AcpiDbGetHistoryByIndex (CurrentCommandIndex); in AcpiOsGetLine()