Lines Matching refs:CurrentCommandIndex
274 UINT32 CurrentCommandIndex = MaxCommandIndex; in AcpiOsGetLine() local
451 if (!CurrentCommandIndex) in AcpiOsGetLine()
458 if (CurrentCommandIndex > PreviousCommandIndex) in AcpiOsGetLine()
460 CurrentCommandIndex = PreviousCommandIndex; in AcpiOsGetLine()
465 NextCommand = AcpiDbGetHistoryByIndex (CurrentCommandIndex); in AcpiOsGetLine()
478 PreviousCommandIndex = CurrentCommandIndex; in AcpiOsGetLine()
479 CurrentCommandIndex--; in AcpiOsGetLine()
491 if (CurrentCommandIndex < PreviousCommandIndex) in AcpiOsGetLine()
493 CurrentCommandIndex = PreviousCommandIndex; in AcpiOsGetLine()
498 if ((CurrentCommandIndex + 1) > MaxCommandIndex) in AcpiOsGetLine()
502 PreviousCommandIndex = CurrentCommandIndex; in AcpiOsGetLine()
506 PreviousCommandIndex = CurrentCommandIndex; in AcpiOsGetLine()
507 CurrentCommandIndex++; in AcpiOsGetLine()
511 NextCommand = AcpiDbGetHistoryByIndex (CurrentCommandIndex); in AcpiOsGetLine()