Home
last modified time | relevance | path

Searched refs:CurPos (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/UefiShell/
DdaShell.c103 __off_t CurPos = -1; in da_ShellSeek() local
117 Status = ShellGetFilePosition( FileHandle, (UINT64 *)&CurPos); in da_ShellSeek()
121 CurPos = 0; // offset is an absolute position for SEEK_SET in da_ShellSeek()
128 Status = ShellSetFilePosition( FileHandle, (UINT64)(CurPos + offset)); in da_ShellSeek()
131 Status = ShellGetFilePosition( FileHandle, (UINT64 *)&CurPos); in da_ShellSeek()
142 CurPos = EOF; in da_ShellSeek()
144 return CurPos; in da_ShellSeek()
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
DSysCalls.c526 __off_t CurPos = -1; in lseek() local
536 CurPos = filp->f_ops->fo_lseek( filp, offset, how); in lseek()
537 if(CurPos >= 0) { in lseek()
538 filp->f_offset = CurPos; in lseek()
548 return CurPos; in lseek()
/device/linaro/bootloader/edk2/Nt32Pkg/WinNtSimpleFileSystemDxe/
DWinNtSimpleFileSystem.c2327 UINT64 CurPos; in WinNtSimpleFileSystemSetInfo() local
2705 Status = This->GetPosition (This, &CurPos); in WinNtSimpleFileSystemSetInfo()
2720 Status = This->SetPosition (This, CurPos); in WinNtSimpleFileSystemSetInfo()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
DFormDisplay.c1492 IN LIST_ENTRY *CurPos, in FindTopOfScreenMenu() argument
1501 Link = CurPos; in FindTopOfScreenMenu()