TianoCore EDK2 master
|
#include "RamDiskImpl.h"
Go to the source code of this file.
Functions | |
BOOLEAN | GrowBuffer (IN OUT EFI_STATUS *Status, IN OUT VOID **Buffer, IN UINTN BufferSize) |
EFI_FILE_INFO * | FileInfo (IN EFI_FILE_HANDLE FHand) |
Internal file explorer helper functions for RamDiskDxe driver.
Copyright (c) 2016, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file RamDiskFileExplorer.c.
EFI_FILE_INFO * FileInfo | ( | IN EFI_FILE_HANDLE | FHand | ) |
This function gets the file information from an open file descriptor, and stores it in a buffer allocated from pool.
[in] | FHand | File Handle. |
Definition at line 79 of file RamDiskFileExplorer.c.
Helper function called as part of the code needed to allocate the proper sized buffer for various EFI interfaces.
[in,out] | Status | Current status. |
[in,out] | Buffer | Current allocated buffer, or NULL. |
[in] | BufferSize | Current buffer size needed. |
TRUE | If the buffer was reallocated and the caller should try the API again. |
FALSE | The caller should not call this function again. |
Definition at line 25 of file RamDiskFileExplorer.c.