Lines Matching refs:CurrentCommandIndex
168 UINT32 CurrentCommandIndex = MaxCommandIndex; in AcpiOsGetLine() local
345 if (!CurrentCommandIndex) in AcpiOsGetLine()
352 if (CurrentCommandIndex > PreviousCommandIndex) in AcpiOsGetLine()
354 CurrentCommandIndex = PreviousCommandIndex; in AcpiOsGetLine()
359 NextCommand = AcpiDbGetHistoryByIndex (CurrentCommandIndex); in AcpiOsGetLine()
372 PreviousCommandIndex = CurrentCommandIndex; in AcpiOsGetLine()
373 CurrentCommandIndex--; in AcpiOsGetLine()
385 if (CurrentCommandIndex < PreviousCommandIndex) in AcpiOsGetLine()
387 CurrentCommandIndex = PreviousCommandIndex; in AcpiOsGetLine()
392 if ((CurrentCommandIndex + 1) > MaxCommandIndex) in AcpiOsGetLine()
396 PreviousCommandIndex = CurrentCommandIndex; in AcpiOsGetLine()
400 PreviousCommandIndex = CurrentCommandIndex; in AcpiOsGetLine()
401 CurrentCommandIndex++; in AcpiOsGetLine()
405 NextCommand = AcpiDbGetHistoryByIndex (CurrentCommandIndex); in AcpiOsGetLine()