Lines Matching refs:Position
1795 IN UINT64 Position
1801 Set a file's current position.
1807 Position - The byte position from the start of the file to set.
1811 EFI_SUCCESS - The file position has been changed.
1835 if (Position != 0) {
1867 if (Position == (UINT64) -1) {
1870 PosHigh = (UINT32) RShiftU64 (Position, 32);
1872 PosLow = PrivateFile->WinNtThunk->SetFilePointer (PrivateFile->LHandle, (ULONG) Position, (PLONG)&PosHigh, FILE_BEGIN);
1887 OUT UINT64 *Position
1893 Get a file's current position.
1899 Position - Pointer to storage for the current position.
1903 EFI_SUCCESS - The file position has been reported.
1916 if (This == NULL || Position == NULL) {
1934 *Position = PrivateFile->WinNtThunk->SetFilePointer (
1941 Status = *Position == 0xffffffff ? EFI_DEVICE_ERROR : EFI_SUCCESS;
1947 *Position += LShiftU64 (PosHigh64, 32);