MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / DxePcdSetPtrEx

Function DxePcdSetPtrEx

MdeModulePkg/Universal/PCD/Dxe/Pcd.c:991–1001  ·  view source on GitHub ↗

Sets a value of a specified size for a given PCD token. When the PCD service sets a value, it will check to ensure that the size of the value being set is compatible with the Token's existing definition. If it is not, an error will be returned. @param[in] Guid The 128-bit unique value that designates the namespace from which to extract the value. @param[in] ExTokenNumber The P

Source from the content-addressed store, hash-verified

989
990**/
991EFI_STATUS
992EFIAPI
993DxePcdSetPtrEx (
994 IN CONST EFI_GUID *Guid,
995 IN UINTN ExTokenNumber,
996 IN OUT UINTN *SizeOfBuffer,
997 IN VOID *Buffer
998 )
999{
1000 return ExSetWorker(ExTokenNumber, Guid, Buffer, SizeOfBuffer, TRUE);
1001}
1002
1003/**
1004 Sets an Boolean value for a given PCD token.

Callers

nothing calls this directly

Calls 1

ExSetWorkerFunction · 0.70

Tested by

no test coverage detected