Lines Matching refs:FileHandle
27 EFI_FILE_HANDLE FileHandle;
62 EFI_FILE_HANDLE FileHandle, LastHandle;
98 FileHandle = NULL;
101 FileHandle = LibOpenRoot (*DeviceHandle);
104 Status = FileHandle ? EFI_SUCCESS : EFI_UNSUPPORTED;
136 LastHandle = FileHandle;
137 FileHandle = NULL;
143 &FileHandle,
167 ASSERT(FileHandle);
168 FHand->FileHandle = FileHandle;
176 if (FileHandle) {
177 uefi_call_wrapper(FileHandle->Close, 1, FileHandle);
178 FileHandle = NULL;
316 Status = uefi_call_wrapper(FHand->FileHandle->SetPosition, 2, FHand->FileHandle, Offset);
319 Status = uefi_call_wrapper(FHand->FileHandle->Read, 3, FHand->FileHandle, ReadSize, Buffer);
341 if (FHand->FileHandle) {
342 uefi_call_wrapper(FHand->FileHandle->Close, 1, FHand->FileHandle);