Home | History | Annotate | Download | only in Shell

Lines Matching refs:Position

67   @param[out] Position  Ignored.

75 OUT UINT64 *Position
85 @param[in] Position Ignored.
93 IN UINT64 Position
302 @param[in, out] TabUpdatePos Return the TAB update position.
450 @retval EFI_DEVICE_ERROR On entry, the current file position is beyond the end of the file.
595 // the current position one character forward
675 // Move characters behind current position one character forward
706 // Adjust current cursor position
716 // Adjust current cursor position
726 // Move current cursor position to the beginning of the command line
735 // Move current cursor position to the end of the command line
823 // If we have a new position, we are preparing to print a previous or
869 // BACKSPACE and DELETE, we need to move the cursor position forward,
890 // Calculate the cursor position after current operation. If cursor
911 // Set the cursor position for this key
1376 Move the cursor position one character backward.
1379 @param[in, out] Column Current column of the cursor position
1380 @param[in, out] Row Current row of the cursor position
1404 Move the cursor position one character forward.
1408 @param[in, out] Column Current column of the cursor position
1409 @param[in, out] Row Current row of the cursor position
1488 // for the buffer, size, and position.
1504 UINT64 Position;
1514 @param[out] Position The position to set.
1516 @retval EFI_SUCCESS The position was successfully changed.
1517 @retval EFI_INVALID_PARAMETER The Position was invalid.
1523 OUT UINT64 Position
1526 if (Position <= ((EFI_FILE_PROTOCOL_MEM*)This)->FileSize) {
1527 ((EFI_FILE_PROTOCOL_MEM*)This)->Position = Position;
1538 @param[out] Position The pointer to the position.
1540 @retval EFI_SUCCESS The position was retrieved.
1546 OUT UINT64 *Position
1549 *Position = ((EFI_FILE_PROTOCOL_MEM*)This)->Position;
1579 if ((UINTN)(MemFile->Position + (*BufferSize)) > (UINTN)(MemFile->BufferSize)) {
1583 CopyMem(((UINT8*)MemFile->Buffer) + MemFile->Position, Buffer, *BufferSize);
1584 MemFile->Position += (*BufferSize);
1585 MemFile->FileSize = MemFile->Position;
1596 if ((UINTN)(MemFile->Position + AsciiStrSize(AsciiBuffer)) > (UINTN)(MemFile->BufferSize)) {
1600 CopyMem(((UINT8*)MemFile->Buffer) + MemFile->Position, AsciiBuffer, AsciiStrSize(AsciiBuffer));
1601 MemFile->Position += (*BufferSize / sizeof(CHAR16));
1602 MemFile->FileSize = MemFile->Position;
1628 if (*BufferSize > (UINTN)((MemFile->FileSize) - (UINTN)(MemFile->Position))) {
1629 (*BufferSize) = (UINTN)((MemFile->FileSize) - (UINTN)(MemFile->Position));
1631 CopyMem(Buffer, ((UINT8*)MemFile->Buffer) + MemFile->Position, (*BufferSize));
1632 MemFile->Position = MemFile->Position + (*BufferSize);
1698 ASSERT(FileInterface->Position == 0);
1708 FileInterface->Position = 2;
1731 Set a files current position
1734 @param Position Byte position from the start of the file.
1744 IN UINT64 Position
1747 return ((EFI_FILE_PROTOCOL_FILE*)This)->Orig->SetPosition(((EFI_FILE_PROTOCOL_FILE*)This)->Orig, Position);
1751 Get a file's current position
1754 @param Position Byte position from the start of the file.
1764 OUT UINT64 *Position
1767 return ((EFI_FILE_PROTOCOL_FILE*)This)->Orig->GetPosition(((EFI_FILE_PROTOCOL_FILE*)This)->Orig, Position);