Home | History | Annotate | Download | only in Shell

Lines Matching refs:Position

64   @param[out] Position  Ignored.

72 OUT UINT64 *Position
82 @param[in] Position Ignored.
90 IN UINT64 Position
307 @retval EFI_DEVICE_ERROR On entry, the current file position is beyond the end of the file.
468 // the current position one character forward
605 // Move characters behind current position one character forward
636 // Adjust current cursor position
646 // Adjust current cursor position
656 // Move current cursor position to the beginning of the command line
665 // Move current cursor position to the end of the command line
743 // If we have a new position, we are preparing to print a previous or
789 // BACKSPACE and DELETE, we need to move the cursor position forward,
810 // Calculate the cursor position after current operation. If cursor
831 // Set the cursor position for this key
1191 Move the cursor position one character backward.
1194 @param[in, out] Column Current column of the cursor position
1195 @param[in, out] Row Current row of the cursor position
1220 Move the cursor position one character forward.
1224 @param[in, out] Column Current column of the cursor position
1225 @param[in, out] Row Current row of the cursor position
1306 // for the buffer, size, and position.
1322 UINT64 Position;
1331 @param[out] Position The position to set.
1333 @retval EFI_SUCCESS The position was successfully changed.
1334 @retval EFI_INVALID_PARAMETER The Position was invalid.
1340 OUT UINT64 Position
1343 if (Position <= ((EFI_FILE_PROTOCOL_MEM*)This)->BufferSize) {
1344 ((EFI_FILE_PROTOCOL_MEM*)This)->Position = Position;
1355 @param[out] Position The pointer to the position.
1357 @retval EFI_SUCCESS The position was retrieved.
1363 OUT UINT64 *Position
1366 *Position = ((EFI_FILE_PROTOCOL_MEM*)This)->Position;
1393 if ((UINTN)(((EFI_FILE_PROTOCOL_MEM*)This)->Position + (*BufferSize)) > (UINTN)(((EFI_FILE_PROTOCOL_MEM*)This)->BufferSize)) {
1397 CopyMem(((UINT8*)((EFI_FILE_PROTOCOL_MEM*)This)->Buffer) + ((EFI_FILE_PROTOCOL_MEM*)This)->Position, Buffer, *BufferSize);
1398 ((EFI_FILE_PROTOCOL_MEM*)This)->Position += (*BufferSize);
1409 if ((UINTN)(((EFI_FILE_PROTOCOL_MEM*)This)->Position + AsciiStrSize(AsciiBuffer)) > (UINTN)(((EFI_FILE_PROTOCOL_MEM*)This)->BufferSize)) {
1413 CopyMem(((UINT8*)((EFI_FILE_PROTOCOL_MEM*)This)->Buffer) + ((EFI_FILE_PROTOCOL_MEM*)This)->Position, AsciiBuffer, AsciiStrSize(AsciiBuffer));
1414 ((EFI_FILE_PROTOCOL_MEM*)This)->Position += AsciiStrSize(AsciiBuffer);
1437 if (*BufferSize > (UINTN)((((EFI_FILE_PROTOCOL_MEM*)This)->BufferSize) - (UINTN)(((EFI_FILE_PROTOCOL_MEM*)This)->Position))) {
1438 (*BufferSize) = (UINTN)((((EFI_FILE_PROTOCOL_MEM*)This)->BufferSize) - (UINTN)(((EFI_FILE_PROTOCOL_MEM*)This)->Position));
1440 CopyMem(Buffer, ((UINT8*)((EFI_FILE_PROTOCOL_MEM*)This)->Buffer) + ((EFI_FILE_PROTOCOL_MEM*)This)->Position, (*BufferSize));
1441 ((EFI_FILE_PROTOCOL_MEM*)This)->Position = ((EFI_FILE_PROTOCOL_MEM*)This)->Position + (*BufferSize);
1508 ASSERT(FileInterface->Position == 0);
1530 Set a files current position
1533 @param Position Byte position from the start of the file.
1543 IN UINT64 Position
1546 return ((EFI_FILE_PROTOCOL_FILE*)This)->Orig->SetPosition(((EFI_FILE_PROTOCOL_FILE*)This)->Orig, Position);
1550 Get a file's current position
1553 @param Position Byte position from the start of the file.
1563 OUT UINT64 *Position
1566 return ((EFI_FILE_PROTOCOL_FILE*)This)->Orig->GetPosition(((EFI_FILE_PROTOCOL_FILE*)This)->Orig, Position);