mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-25 06:34:30 +02:00
Update to doxygen comments.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5310 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
001d920c76
commit
2be3c94664
@ -116,6 +116,21 @@ Returns:
|
|||||||
return PeiServicesInstallPpi (&mPpiListVariable);
|
return PeiServicesInstallPpi (&mPpiListVariable);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
Provide the read variable functionality of the variable services.
|
||||||
|
|
||||||
|
@param PeiServices General purpose services available to every PEIM.
|
||||||
|
@param VariableName The variable name
|
||||||
|
@param VendorGuid The vendor's GUID
|
||||||
|
@param Attributes Pointer to the attribute
|
||||||
|
@param DataSize Size of data
|
||||||
|
@param Data Pointer to data
|
||||||
|
|
||||||
|
@retval EFI_SUCCESS The interface could be successfully installed
|
||||||
|
@retval EFI_NOT_FOUND The variable could not be discovered
|
||||||
|
@retval EFI_BUFFER_TOO_SMALL The caller buffer is not large enough
|
||||||
|
|
||||||
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
EFIAPI
|
EFIAPI
|
||||||
PeiGetVariable (
|
PeiGetVariable (
|
||||||
@ -126,35 +141,6 @@ PeiGetVariable (
|
|||||||
IN OUT UINTN *DataSize,
|
IN OUT UINTN *DataSize,
|
||||||
OUT VOID *Data
|
OUT VOID *Data
|
||||||
)
|
)
|
||||||
/*++
|
|
||||||
|
|
||||||
Routine Description:
|
|
||||||
|
|
||||||
Provide the read variable functionality of the variable services.
|
|
||||||
|
|
||||||
Arguments:
|
|
||||||
|
|
||||||
PeiServices - General purpose services available to every PEIM.
|
|
||||||
|
|
||||||
VariableName - The variable name
|
|
||||||
|
|
||||||
VendorGuid - The vendor's GUID
|
|
||||||
|
|
||||||
Attributes - Pointer to the attribute
|
|
||||||
|
|
||||||
DataSize - Size of data
|
|
||||||
|
|
||||||
Data - Pointer to data
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
|
|
||||||
EFI_SUCCESS - The interface could be successfully installed
|
|
||||||
|
|
||||||
EFI_NOT_FOUND - The variable could not be discovered
|
|
||||||
|
|
||||||
EFI_BUFFER_TOO_SMALL - The caller buffer is not large enough
|
|
||||||
|
|
||||||
--*/
|
|
||||||
{
|
{
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
EFI_PEI_READ_ONLY_VARIABLE_PPI *ReadOnlyVariable;
|
EFI_PEI_READ_ONLY_VARIABLE_PPI *ReadOnlyVariable;
|
||||||
@ -177,6 +163,21 @@ Returns:
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
Provide the get next variable functionality of the variable services.
|
||||||
|
|
||||||
|
@param PeiServices General purpose services available to every PEIM.
|
||||||
|
@param VariabvleNameSize The variable name's size.
|
||||||
|
@param VariableName A pointer to the variable's name.
|
||||||
|
@param VariableGuid A pointer to the EFI_GUID structure.
|
||||||
|
@param VariableNameSize Size of the variable name
|
||||||
|
@param VariableName The variable name
|
||||||
|
@param VendorGuid The vendor's GUID
|
||||||
|
|
||||||
|
@retval EFI_SUCCESS The interface could be successfully installed
|
||||||
|
@retval EFI_NOT_FOUND The variable could not be discovered
|
||||||
|
|
||||||
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
EFIAPI
|
EFIAPI
|
||||||
PeiGetNextVariableName (
|
PeiGetNextVariableName (
|
||||||
@ -185,32 +186,6 @@ PeiGetNextVariableName (
|
|||||||
IN OUT CHAR16 *VariableName,
|
IN OUT CHAR16 *VariableName,
|
||||||
IN OUT EFI_GUID *VariableGuid
|
IN OUT EFI_GUID *VariableGuid
|
||||||
)
|
)
|
||||||
/*++
|
|
||||||
|
|
||||||
Routine Description:
|
|
||||||
|
|
||||||
Provide the get next variable functionality of the variable services.
|
|
||||||
|
|
||||||
Arguments:
|
|
||||||
|
|
||||||
PeiServices - General purpose services available to every PEIM.
|
|
||||||
VariabvleNameSize - The variable name's size.
|
|
||||||
VariableName - A pointer to the variable's name.
|
|
||||||
VariableGuid - A pointer to the EFI_GUID structure.
|
|
||||||
|
|
||||||
VariableNameSize - Size of the variable name
|
|
||||||
|
|
||||||
VariableName - The variable name
|
|
||||||
|
|
||||||
VendorGuid - The vendor's GUID
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
|
|
||||||
EFI_SUCCESS - The interface could be successfully installed
|
|
||||||
|
|
||||||
EFI_NOT_FOUND - The variable could not be discovered
|
|
||||||
|
|
||||||
--*/
|
|
||||||
{
|
{
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
EFI_PEI_READ_ONLY_VARIABLE_PPI *ReadOnlyVariable;
|
EFI_PEI_READ_ONLY_VARIABLE_PPI *ReadOnlyVariable;
|
||||||
|
@ -74,7 +74,7 @@ EFI_PEI_PPI_DESCRIPTOR mPpiListVariable = {
|
|||||||
|
|
||||||
@retval EFI_SUCCESS If the gEfiPeiReadOnlyVariablePpiGuid interface could be successfully installed.
|
@retval EFI_SUCCESS If the gEfiPeiReadOnlyVariablePpiGuid interface could be successfully installed.
|
||||||
|
|
||||||
--*/
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
EFIAPI
|
EFIAPI
|
||||||
PeimInitializeReadOnlyVariable (
|
PeimInitializeReadOnlyVariable (
|
||||||
@ -98,6 +98,21 @@ PeimInitializeReadOnlyVariable (
|
|||||||
return (*PeiServices)->InstallPpi (PeiServices, &mPpiListVariable);
|
return (*PeiServices)->InstallPpi (PeiServices, &mPpiListVariable);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
Provide the read variable functionality of the variable services.
|
||||||
|
|
||||||
|
@param PeiServices General purpose services available to every PEIM.
|
||||||
|
@param VariableName The variable name
|
||||||
|
@param VendorGuid The vendor's GUID
|
||||||
|
@param Attributes Pointer to the attribute
|
||||||
|
@param DataSize Size of data
|
||||||
|
@param Data Pointer to data
|
||||||
|
|
||||||
|
@retval EFI_SUCCESS The interface could be successfully installed
|
||||||
|
@retval EFI_NOT_FOUND The variable could not be discovered
|
||||||
|
@retval EFI_BUFFER_TOO_SMALL The caller buffer is not large enough
|
||||||
|
|
||||||
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
EFIAPI
|
EFIAPI
|
||||||
PeiGetVariable (
|
PeiGetVariable (
|
||||||
@ -108,35 +123,6 @@ PeiGetVariable (
|
|||||||
IN OUT UINTN *DataSize,
|
IN OUT UINTN *DataSize,
|
||||||
OUT VOID *Data
|
OUT VOID *Data
|
||||||
)
|
)
|
||||||
/*++
|
|
||||||
|
|
||||||
Routine Description:
|
|
||||||
|
|
||||||
Provide the read variable functionality of the variable services.
|
|
||||||
|
|
||||||
Arguments:
|
|
||||||
|
|
||||||
PeiServices - General purpose services available to every PEIM.
|
|
||||||
|
|
||||||
VariableName - The variable name
|
|
||||||
|
|
||||||
VendorGuid - The vendor's GUID
|
|
||||||
|
|
||||||
Attributes - Pointer to the attribute
|
|
||||||
|
|
||||||
DataSize - Size of data
|
|
||||||
|
|
||||||
Data - Pointer to data
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
|
|
||||||
EFI_SUCCESS - The interface could be successfully installed
|
|
||||||
|
|
||||||
EFI_NOT_FOUND - The variable could not be discovered
|
|
||||||
|
|
||||||
EFI_BUFFER_TOO_SMALL - The caller buffer is not large enough
|
|
||||||
|
|
||||||
--*/
|
|
||||||
{
|
{
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
EFI_PEI_READ_ONLY_VARIABLE2_PPI *ReadOnlyVariable2;
|
EFI_PEI_READ_ONLY_VARIABLE2_PPI *ReadOnlyVariable2;
|
||||||
@ -160,6 +146,21 @@ Returns:
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
Provide the get next variable functionality of the variable services.
|
||||||
|
|
||||||
|
@param PeiServices General purpose services available to every PEIM.
|
||||||
|
@param VariabvleNameSize The variable name's size.
|
||||||
|
@param VariableName A pointer to the variable's name.
|
||||||
|
@param VariableGuid A pointer to the EFI_GUID structure.
|
||||||
|
@param VariableNameSize Size of the variable name
|
||||||
|
@param VariableName The variable name
|
||||||
|
@param VendorGuid The vendor's GUID
|
||||||
|
|
||||||
|
@retval EFI_SUCCESS The interface could be successfully installed
|
||||||
|
@retval EFI_NOT_FOUND The variable could not be discovered
|
||||||
|
|
||||||
|
**/
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
EFIAPI
|
EFIAPI
|
||||||
PeiGetNextVariableName (
|
PeiGetNextVariableName (
|
||||||
@ -168,32 +169,6 @@ PeiGetNextVariableName (
|
|||||||
IN OUT CHAR16 *VariableName,
|
IN OUT CHAR16 *VariableName,
|
||||||
IN OUT EFI_GUID *VendorGuid
|
IN OUT EFI_GUID *VendorGuid
|
||||||
)
|
)
|
||||||
/*++
|
|
||||||
|
|
||||||
Routine Description:
|
|
||||||
|
|
||||||
Provide the get next variable functionality of the variable services.
|
|
||||||
|
|
||||||
Arguments:
|
|
||||||
|
|
||||||
PeiServices - General purpose services available to every PEIM.
|
|
||||||
VariabvleNameSize - The variable name's size.
|
|
||||||
VariableName - A pointer to the variable's name.
|
|
||||||
VariableGuid - A pointer to the EFI_GUID structure.
|
|
||||||
|
|
||||||
VariableNameSize - Size of the variable name
|
|
||||||
|
|
||||||
VariableName - The variable name
|
|
||||||
|
|
||||||
VendorGuid - The vendor's GUID
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
|
|
||||||
EFI_SUCCESS - The interface could be successfully installed
|
|
||||||
|
|
||||||
EFI_NOT_FOUND - The variable could not be discovered
|
|
||||||
|
|
||||||
--*/
|
|
||||||
{
|
{
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
EFI_PEI_READ_ONLY_VARIABLE2_PPI *ReadOnlyVariable2;
|
EFI_PEI_READ_ONLY_VARIABLE2_PPI *ReadOnlyVariable2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user