Home
last modified time | relevance | path

Searched refs:EndOfLine (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/acpi/common/
H A Dacgetline.c174 UINT32 EndOfLine,
224 UINT32 EndOfLine, in AcpiAcClearLine() argument
230 if (CursorPosition < EndOfLine) in AcpiAcClearLine()
234 for (i = 0; i < (EndOfLine - CursorPosition); i++) in AcpiAcClearLine()
242 for (; EndOfLine > 0; EndOfLine--) in AcpiAcClearLine()
278 UINT32 EndOfLine = 0; in AcpiOsGetLine() local
295 if (EndOfLine >= (BufferLength - 1)) in AcpiOsGetLine()
307 if (EndOfLine == CursorPosition) in AcpiOsGetLine()
310 Buffer[EndOfLine] = (char) InputChar; in AcpiOsGetLine()
312 EndOfLine++; in AcpiOsGetLine()
[all …]
H A Dosunixxf.c656 UINT32 EndOfLine; in AcpiOsGetLine() local
661 for (EndOfLine = 0; ; EndOfLine++) in AcpiOsGetLine()
663 if (EndOfLine >= BufferLength) in AcpiOsGetLine()
678 Buffer[EndOfLine] = (char) InputChar; in AcpiOsGetLine()
683 Buffer[EndOfLine] = 0; in AcpiOsGetLine()
689 *BytesRead = EndOfLine; in AcpiOsGetLine()