Lines Matching full:value
43 Returns the Boolean value for the PCD feature flag specified by TokenName.
47 @param TokenName The name of the PCD token to retrieve a current value for.
49 @return Boolean value for the PCD feature flag.
56 Retrieves an 8-bit fixed PCD token value based on a token name.
58 Returns the 8-bit value for the token specified by TokenName.
62 @param TokenName The name of the PCD token to retrieve a current value for.
64 @return 8-bit value for the token specified by TokenName.
71 Retrieves a 16-bit fixed PCD token value based on a token name.
73 Returns the 16-bit value for the token specified by TokenName.
77 @param TokenName The name of the PCD token to retrieve a current value for.
79 @return 16-bit value for the token specified by TokenName.
86 Retrieves a 32-bit fixed PCD token value based on a token name.
88 Returns the 32-bit value for the token specified by TokenName.
92 @param TokenName The name of the PCD token to retrieve a current value for.
94 @return 32-bit value for the token specified by TokenName.
101 Retrieves a 64-bit fixed PCD token value based on a token name.
103 Returns the 64-bit value for the token specified by TokenName.
107 @param TokenName The name of the PCD token to retrieve a current value for.
109 @return 64-bit value for the token specified by TokenName.
116 Retrieves a Boolean fixed PCD token value based on a token name.
118 Returns the Boolean value for the token specified by TokenName.
122 @param TokenName The name of the PCD token to retrieve a current value for.
124 @return The Boolean value for the token.
137 @param TokenName The name of the PCD token to retrieve a current value for.
146 Retrieves an 8-bit binary patchable PCD token value based on a token name.
148 Returns the 8-bit value for the token specified by TokenName.
152 @param TokenName The name of the PCD token to retrieve a current value for.
154 @return An 8-bit binary patchable PCD token value.
160 Retrieves a 16-bit binary patchable PCD token value based on a token name.
162 Returns the 16-bit value for the token specified by TokenName.
166 @param TokenName The name of the PCD token to retrieve a current value for.
168 @return A 16-bit binary patchable PCD token value.
175 Retrieves a 32-bit binary patchable PCD token value based on a token name.
177 Returns the 32-bit value for the token specified by TokenName.
181 @param TokenName The name of the PCD token to retrieve a current value for.
183 @return A 32-bit binary patchable PCD token value.
190 Retrieves a 64-bit binary patchable PCD token value based on a token name.
192 Returns the 64-bit value for the token specified by TokenName.
196 @param TokenName The name of the PCD token to retrieve a current value for.
198 @return A 64-bit binary patchable PCD token value.
205 Retrieves a Boolean binary patchable PCD token value based on a token name.
207 Returns the Boolean value for the token specified by TokenName.
211 @param TokenName The name of the PCD token to retrieve a current value for.
213 @return The Boolean value for the token.
226 @param TokenName The name of the PCD token to retrieve a current value for.
235 Sets an 8-bit binary patchable PCD token value based on a token name.
237 Sets the 8-bit value for the token specified by TokenName. Value is returned.
241 @param TokenName The name of the binary patchable PCD token to set the current value for.
242 @param Value The 8-bit value to set.
244 @return Return the Value that was set.
247 #define PatchPcdSet8(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value)) argument
251 Sets a 16-bit binary patchable PCD token value based on a token name.
253 Sets the 16-bit value for the token specified by TokenName. Value is returned.
257 @param TokenName The name of the binary patchable PCD token to set the current value for.
258 @param Value The 16-bit value to set.
260 @return Return the Value that was set.
263 #define PatchPcdSet16(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value)) argument
267 Sets a 32-bit binary patchable PCD token value based on a token name.
269 Sets the 32-bit value for the token specified by TokenName. Value is returned.
273 @param TokenName The name of the binary patchable PCD token to set the current value for.
274 @param Value The 32-bit value to set.
276 @return Return the Value that was set.
279 #define PatchPcdSet32(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value)) argument
283 Sets a 64-bit binary patchable PCD token value based on a token name.
285 Sets the 64-bit value for the token specified by TokenName. Value is returned.
289 @param TokenName The name of the binary patchable PCD token to set the current value for.
290 @param Value The 64-bit value to set.
292 @return Return the Value that was set.
295 #define PatchPcdSet64(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value)) argument
299 Sets a Boolean binary patchable PCD token value based on a token name.
301 Sets the Boolean value for the token specified by TokenName. Value is returned.
305 @param TokenName The name of the binary patchable PCD token to set the current value for.
306 @param Value The boolean value to set.
308 @return Return the Value that was set.
311 #define PatchPcdSetBool(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value)) argument
328 @param TokenName The name of the binary patchable PCD token to set the current value for.
330 @param Buffer Pointer to the value to set.
344 Retrieves an 8-bit PCD token value based on a token name.
346 Returns the 8-bit value for the token specified by TokenName.
349 @param TokenName The name of the PCD token to retrieve a current value for.
351 @return 8-bit value for the token specified by TokenName.
358 Retrieves a 16-bit PCD token value based on a token name.
360 Returns the 16-bit value for the token specified by TokenName.
363 @param TokenName The name of the PCD token to retrieve a current value for.
365 @return 16-bit value for the token specified by TokenName.
372 Retrieves a 32-bit PCD token value based on a token name.
374 Returns the 32-bit value for the token specified by TokenName.
377 @param TokenName The name of the PCD token to retrieve a current value for.
379 @return 32-bit value for the token specified by TokenName.
386 Retrieves a 64-bit PCD token value based on a token name.
388 Returns the 64-bit value for the token specified by TokenName.
391 @param TokenName The name of the PCD token to retrieve a current value for.
393 @return 64-bit value for the token specified by TokenName.
405 @param TokenName The name of the PCD token to retrieve a current value for.
414 Retrieves a Boolean PCD token value based on a token name.
416 Returns the Boolean value for the token specified by TokenName.
419 @param TokenName The name of the PCD token to retrieve a current value for.
421 @return A Boolean PCD token value.
433 @param[in] TokenName The name of the PCD token to retrieve a current value size for.
447 @param[in] TokenName The name of the PCD token to retrieve a current value size for.
461 @param[in] TokenName The name of the PCD token to retrieve a current value size for.
475 @param[in] Guid Pointer to a 128-bit unique value that designates
476 which namespace to retrieve a value from.
477 @param[in] TokenNumber The PCD token number to retrieve a current value size for.
486 Sets an 8-bit PCD token value based on a token name.
488 Sets the 8-bit value for the token specified by TokenName. Value is returned.
491 @param TokenName The name of the PCD token to retrieve a current value for.
492 @param Value The 8-bit value to set.
494 @return Return the Value that was set.
497 #define PcdSet8(TokenName, Value) _PCD_SET_MODE_8_##TokenName ((Value)) argument
501 Sets a 16-bit PCD token value based on a token name.
503 Sets the 16-bit value for the token specified by TokenName. Value is returned.
506 @param TokenName The name of the PCD token to retrieve a current value for.
507 @param Value The 16-bit value to set.
509 @return Return the Value that was set.
512 #define PcdSet16(TokenName, Value) _PCD_SET_MODE_16_##TokenName ((Value)) argument
516 Sets a 32-bit PCD token value based on a token name.
518 Sets the 32-bit value for the token specified by TokenName. Value is returned.
521 @param TokenName The name of the PCD token to retrieve a current value for.
522 @param Value The 32-bit value to set.
524 @return Return the Value that was set.
527 #define PcdSet32(TokenName, Value) _PCD_SET_MODE_32_##TokenName ((Value)) argument
531 Sets a 64-bit PCD token value based on a token name.
533 Sets the 64-bit value for the token specified by TokenName. Value is returned.
536 @param TokenName The name of the PCD token to retrieve a current value for.
537 @param Value The 64-bit value to set.
539 @return Return the Value that was set.
542 #define PcdSet64(TokenName, Value) _PCD_SET_MODE_64_##TokenName ((Value)) argument
559 @param TokenName The name of the PCD token to set the current value for.
570 Sets a Boolean PCD token value based on a token name.
572 Sets the Boolean value for the token specified by TokenName. Value is returned.
575 @param TokenName The name of the PCD token to set the current value for.
576 @param Buffer The Boolean value to set.
578 @return Return the Value that was set.
581 #define PcdSetBool(TokenName, Value) _PCD_SET_MODE_BOOL_##TokenName ((Value)) argument
585 Sets a 8-bit PCD token value based on a token name.
587 Sets the 8-bit value for the token specified by TokenName.
590 @param TokenName The name of the PCD token to retrieve a current value for.
591 @param Value The 8-bit value to set.
596 #define PcdSet8S(TokenName, Value) _PCD_SET_MODE_8_S_##TokenName ((Value)) argument
599 Sets a 16-bit PCD token value based on a token name.
601 Sets the 16-bit value for the token specified by TokenName.
604 @param TokenName The name of the PCD token to retrieve a current value for.
605 @param Value The 16-bit value to set.
610 #define PcdSet16S(TokenName, Value) _PCD_SET_MODE_16_S_##TokenName ((Value)) argument
613 Sets a 32-bit PCD token value based on a token name.
615 Sets the 32-bit value for the token specified by TokenName.
618 @param TokenName The name of the PCD token to retrieve a current value for.
619 @param Value The 32-bit value to set.
624 #define PcdSet32S(TokenName, Value) _PCD_SET_MODE_32_S_##TokenName ((Value)) argument
627 Sets a 64-bit PCD token value based on a token name.
629 Sets the 64-bit value for the token specified by TokenName.
632 @param TokenName The name of the PCD token to retrieve a current value for.
633 @param Value The 64-bit value to set.
638 #define PcdSet64S(TokenName, Value) _PCD_SET_MODE_64_S_##TokenName ((Value)) argument
654 @param TokenName The name of the PCD token to set the current value for.
667 Sets a boolean PCD token value based on a token name.
669 Sets the boolean value for the token specified by TokenName.
672 @param TokenName The name of the PCD token to retrieve a current value for.
673 @param Value The boolean value to set.
678 #define PcdSetBoolS(TokenName, Value) _PCD_SET_MODE_BOOL_S_##TokenName ((Value)) argument
686 @param Guid Pointer to a 128-bit unique value that designates
687 which namespace to retrieve a value from.
688 @param TokenName The name of the PCD token to retrieve a current value for.
696 Retrieves an 8-bit PCD token value based on a GUID and a token name.
698 Returns the 8-bit value for the token specified by Guid and TokenName.
704 @param Guid Pointer to a 128-bit unique value that designates
705 which namespace to retrieve a value from.
706 @param TokenName The name of the PCD token to retrieve a current value for.
708 @return An 8-bit PCD token value.
714 Retrieves a 16-bit PCD token value based on a GUID and a token name.
716 Returns the 16-bit value for the token specified by Guid and TokenName.
722 @param Guid Pointer to a 128-bit unique value that designates
723 which namespace to retrieve a value from.
724 @param TokenName The name of the PCD token to retrieve a current value for.
726 @return A 16-bit PCD token value.
733 Retrieves a 32-bit PCD token value based on a GUID and a token name.
735 Returns the 32-bit value for the token specified by Guid and TokenName.
741 @param Guid Pointer to a 128-bit unique value that designates
742 which namespace to retrieve a value from.
743 @param TokenName The name of the PCD token to retrieve a current value for.
745 @return A 32-bit PCD token value.
752 Retrieves a 64-bit PCD token value based on a GUID and a token name.
754 Returns the 64-bit value for the token specified by Guid and TokenName.
760 @param Guid Pointer to a 128-bit unique value that designates
761 which namespace to retrieve a value from.
762 @param TokenName The name of the PCD token to retrieve a current value for.
764 @return A 64-bit PCD token value.
779 @param Guid Pointer to a 128-bit unique value that designates
780 which namespace to retrieve a value from.
781 @param TokenName The name of the PCD token to retrieve a current value for.
790 Retrieves a Boolean PCD token value based on a GUID and a token name.
792 Returns the Boolean value for the token specified by Guid and TokenName.
798 @param Guid Pointer to a 128-bit unique value that designates
799 which namespace to retrieve a value from.
800 @param TokenName The name of the PCD token to retrieve a current value for.
802 @return A Boolean PCD token value.
811 Sets an 8-bit PCD token value based on a GUID and a token name.
813 Sets the 8-bit value for the token specified by Guid and TokenName. Value is returned.
819 @param Guid Pointer to a 128-bit unique value that designates
820 which namespace to retrieve a value from.
821 @param TokenName The name of the PCD token to set the current value for.
822 @param Value The 8-bit value to set.
824 @return Return the Value that was set.
827 #define PcdSetEx8(Guid, TokenName, Value) LibPcdSetEx8 ((Guid), PcdTokenEx(Guid,TokenName), (Va… argument
831 Sets a 16-bit PCD token value based on a GUID and a token name.
833 Sets the 16-bit value for the token specified by Guid and TokenName. Value is returned.
839 @param Guid Pointer to a 128-bit unique value that designates
840 which namespace to retrieve a value from.
841 @param TokenName The name of the PCD token to set the current value for.
842 @param Value The 16-bit value to set.
844 @return Return the Value that was set.
847 #define PcdSetEx16(Guid, TokenName, Value) LibPcdSetEx16 ((Guid), PcdTokenEx(Guid,TokenName), (Va… argument
851 Sets a 32-bit PCD token value based on a GUID and a token name.
853 Sets the 32-bit value for the token specified by Guid and TokenName. Value is returned.
859 @param Guid Pointer to a 128-bit unique value that designates
860 which namespace to retrieve a value from.
861 @param TokenName The name of the PCD token to set the current value for.
862 @param Value The 32-bit value to set.
864 @return Return the Value that was set.
867 #define PcdSetEx32(Guid, TokenName, Value) LibPcdSetEx32 ((Guid), PcdTokenEx(Guid,TokenName), (Va… argument
871 Sets a 64-bit PCD token value based on a GUID and a token name.
873 Sets the 64-bit value for the token specified by Guid and TokenName. Value is returned.
879 @param Guid Pointer to a 128-bit unique value that designates
880 which namespace to retrieve a value from.
881 @param TokenName The name of the PCD token to set the current value for.
882 @param Value The 64-bit value to set.
884 @return Return the Value that was set.
887 #define PcdSetEx64(Guid, TokenName, Value) LibPcdSetEx64 ((Guid), PcdTokenEx(Guid,TokenName), (Va… argument
906 @param Guid Pointer to a 128-bit unique value that designates
907 which namespace to retrieve a value from.
908 @param TokenName The name of the PCD token to set the current value for.
920 Sets a Boolean PCD token value based on a GUID and a token name.
922 Sets the Boolean value for the token specified by Guid and TokenName. Value is returned.
928 @param Guid Pointer to a 128-bit unique value that designates
929 which namespace to retrieve a value from.
930 @param TokenName The name of the PCD token to set the current value for.
931 @param Value The Boolean value to set.
933 @return Return the Value that was set.
936 #define PcdSetExBool(Guid, TokenName, Value) \ argument
937 … LibPcdSetExBool((Guid), PcdTokenEx(Guid,TokenName), (Value))
941 Sets an 8-bit PCD token value based on a GUID and a token name.
943 Sets the 8-bit value for the token specified by Guid and TokenName.
949 @param Guid Pointer to a 128-bit unique value that designates
950 which namespace to retrieve a value from.
951 @param TokenName The name of the PCD token to set the current value for.
952 @param Value The 8-bit value to set.
957 #define PcdSetEx8S(Guid, TokenName, Value) LibPcdSetEx8S ((Guid), PcdTokenEx(Guid,TokenName), (… argument
960 Sets an 16-bit PCD token value based on a GUID and a token name.
962 Sets the 16-bit value for the token specified by Guid and TokenName.
968 @param Guid Pointer to a 128-bit unique value that designates
969 which namespace to retrieve a value from.
970 @param TokenName The name of the PCD token to set the current value for.
971 @param Value The 16-bit value to set.
976 #define PcdSetEx16S(Guid, TokenName, Value) LibPcdSetEx16S ((Guid), PcdTokenEx(Guid,TokenName), … argument
979 Sets an 32-bit PCD token value based on a GUID and a token name.
981 Sets the 32-bit value for the token specified by Guid and TokenName.
987 @param Guid Pointer to a 128-bit unique value that designates
988 which namespace to retrieve a value from.
989 @param TokenName The name of the PCD token to set the current value for.
990 @param Value The 32-bit value to set.
995 #define PcdSetEx32S(Guid, TokenName, Value) LibPcdSetEx32S ((Guid), PcdTokenEx(Guid,TokenName), … argument
998 Sets an 64-bit PCD token value based on a GUID and a token name.
1000 Sets the 64-bit value for the token specified by Guid and TokenName.
1006 @param Guid Pointer to a 128-bit unique value that designates
1007 which namespace to retrieve a value from.
1008 @param TokenName The name of the PCD token to set the current value for.
1009 @param Value The 64-bit value to set.
1014 #define PcdSetEx64S(Guid, TokenName, Value) LibPcdSetEx64S ((Guid), PcdTokenEx(Guid,TokenName), … argument
1032 @param Guid Pointer to a 128-bit unique value that designates
1033 which namespace to retrieve a value from.
1034 @param TokenName The name of the PCD token to set the current value for.
1046 Sets an boolean PCD token value based on a GUID and a token name.
1048 Sets the boolean value for the token specified by Guid and TokenName.
1054 @param Guid Pointer to a 128-bit unique value that designates
1055 which namespace to retrieve a value from.
1056 @param TokenName The name of the PCD token to set the current value for.
1057 @param Value The boolean value to set.
1062 #define PcdSetExBoolS(Guid, TokenName, Value) \ argument
1063 … LibPcdSetExBoolS ((Guid), PcdTokenEx(Guid,TokenName), (Value))
1068 Sets the current SKU in the PCD database to the value specified by SkuId. SkuId is returned.
1070 @param SkuId The SKU value that will be used when the PCD service retrieves and sets values
1084 This function provides a means by which to retrieve a value for a given PCD token.
1086 Returns the 8-bit value for the token specified by TokenNumber.
1088 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1090 @return Returns the 8-bit value for the token specified by TokenNumber.
1101 This function provides a means by which to retrieve a value for a given PCD token.
1103 Returns the 16-bit value for the token specified by TokenNumber.
1105 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1107 @return Returns the 16-bit value for the token specified by TokenNumber.
1118 This function provides a means by which to retrieve a value for a given PCD token.
1120 Returns the 32-bit value for the token specified by TokenNumber.
1122 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1124 @return Returns the 32-bit value for the token specified by TokenNumber.
1135 This function provides a means by which to retrieve a value for a given PCD token.
1137 Returns the 64-bit value for the token specified by TokenNumber.
1139 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1141 @return Returns the 64-bit value for the token specified by TokenNumber.
1152 This function provides a means by which to retrieve a value for a given PCD token.
1156 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1169 This function provides a means by which to retrieve a value for a given PCD token.
1171 Returns the Boolean value of the token specified by TokenNumber.
1173 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1175 @return Returns the Boolean value of the token specified by TokenNumber.
1188 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1201 This function provides a means by which to retrieve a value for a given PCD token.
1203 Returns the 8-bit value for the token specified by TokenNumber and Guid.
1207 @param[in] Guid Pointer to a 128-bit unique value that designates
1208 which namespace to retrieve a value from.
1209 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1223 This function provides a means by which to retrieve a value for a given PCD token.
1225 Returns the 16-bit value for the token specified by TokenNumber and Guid.
1229 @param[in] Guid Pointer to a 128-bit unique value that designates
1230 which namespace to retrieve a value from.
1231 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1245 Returns the 32-bit value for the token specified by TokenNumber and Guid.
1248 @param[in] Guid Pointer to a 128-bit unique value that designates
1249 which namespace to retrieve a value from.
1250 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1264 This function provides a means by which to retrieve a value for a given PCD token.
1266 Returns the 64-bit value for the token specified by TokenNumber and Guid.
1270 @param[in] Guid Pointer to a 128-bit unique value that designates
1271 which namespace to retrieve a value from.
1272 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1286 This function provides a means by which to retrieve a value for a given PCD token.
1292 @param[in] Guid Pointer to a 128-bit unique value that designates
1293 which namespace to retrieve a value from.
1294 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1308 This function provides a means by which to retrieve a value for a given PCD token.
1310 Returns the Boolean value of the token specified by TokenNumber and Guid.
1314 @param[in] Guid Pointer to a 128-bit unique value that designates
1315 which namespace to retrieve a value from.
1316 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1336 @param[in] Guid Pointer to a 128-bit unique value that designates
1337 which namespace to retrieve a value from.
1338 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1353 This function provides a means by which to set a value for a given PCD token.
1355 Sets the 8-bit value for the token specified by TokenNumber
1356 to the value specified by Value. Value is returned.
1358 @param[in] TokenNumber The PCD token number to set a current value for.
1359 @param[in] Value The 8-bit value to set.
1361 @return Return the Value that was set.
1368 IN UINT8 Value
1373 This function provides a means by which to set a value for a given PCD token.
1375 Sets the 16-bit value for the token specified by TokenNumber
1376 to the value specified by Value. Value is returned.
1378 @param[in] TokenNumber The PCD token number to set a current value for.
1379 @param[in] Value The 16-bit value to set.
1381 @return Return the Value that was set.
1388 IN UINT16 Value
1393 This function provides a means by which to set a value for a given PCD token.
1395 Sets the 32-bit value for the token specified by TokenNumber
1396 to the value specified by Value. Value is returned.
1398 @param[in] TokenNumber The PCD token number to set a current value for.
1399 @param[in] Value The 32-bit value to set.
1401 @return Return the Value that was set.
1408 IN UINT32 Value
1413 This function provides a means by which to set a value for a given PCD token.
1415 Sets the 64-bit value for the token specified by TokenNumber
1416 to the value specified by Value. Value is returned.
1418 @param[in] TokenNumber The PCD token number to set a current value for.
1419 @param[in] Value The 64-bit value to set.
1421 @return Return the Value that was set.
1428 IN UINT64 Value
1433 This function provides a means by which to set a value for a given PCD token.
1435 Sets a buffer for the token specified by TokenNumber to the value
1447 @param[in] TokenNumber The PCD token number to set a current value for.
1464 This function provides a means by which to set a value for a given PCD token.
1466 Sets the Boolean value for the token specified by TokenNumber
1467 to the value specified by Value. Value is returned.
1469 @param[in] TokenNumber The PCD token number to set a current value for.
1470 @param[in] Value The boolean value to set.
1472 @return Return the Value that was set.
1479 IN BOOLEAN Value
1484 This function provides a means by which to set a value for a given PCD token.
1486 Sets the 8-bit value for the token specified by TokenNumber and
1487 Guid to the value specified by Value. Value is returned.
1491 @param[in] Guid Pointer to a 128-bit unique value that
1492 designates which namespace to set a value from.
1493 @param[in] TokenNumber The PCD token number to set a current value for.
1494 @param[in] Value The 8-bit value to set.
1496 @return Return the Value that was set.
1504 IN UINT8 Value
1509 This function provides a means by which to set a value for a given PCD token.
1511 Sets the 16-bit value for the token specified by TokenNumber and
1512 Guid to the value specified by Value. Value is returned.
1516 @param[in] Guid Pointer to a 128-bit unique value that
1517 designates which namespace to set a value from.
1518 @param[in] TokenNumber The PCD token number to set a current value for.
1519 @param[in] Value The 16-bit value to set.
1521 @return Return the Value that was set.
1529 IN UINT16 Value
1534 This function provides a means by which to set a value for a given PCD token.
1536 Sets the 32-bit value for the token specified by TokenNumber and
1537 Guid to the value specified by Value. Value is returned.
1541 @param[in] Guid Pointer to a 128-bit unique value that
1542 designates which namespace to set a value from.
1543 @param[in] TokenNumber The PCD token number to set a current value for.
1544 @param[in] Value The 32-bit value to set.
1546 @return Return the Value that was set.
1554 IN UINT32 Value
1559 This function provides a means by which to set a value for a given PCD token.
1561 Sets the 64-bit value for the token specified by TokenNumber and
1562 Guid to the value specified by Value. Value is returned.
1566 @param[in] Guid Pointer to a 128-bit unique value that
1567 designates which namespace to set a value from.
1568 @param[in] TokenNumber The PCD token number to set a current value for.
1569 @param[in] Value The 64-bit value to set.
1571 @return Return the Value that was set.
1579 IN UINT64 Value
1584 This function provides a means by which to set a value for a given PCD token.
1586 Sets a buffer for the token specified by TokenNumber to the value specified by
1596 @param[in] Guid Pointer to a 128-bit unique value that
1597 designates which namespace to set a value from.
1598 @param[in] TokenNumber The PCD token number to set a current value for.
1616 This function provides a means by which to set a value for a given PCD token.
1618 Sets the Boolean value for the token specified by TokenNumber and
1619 Guid to the value specified by Value. Value is returned.
1623 @param[in] Guid Pointer to a 128-bit unique value that
1624 designates which namespace to set a value from.
1625 @param[in] TokenNumber The PCD token number to set a current value for.
1626 @param[in] Value The Boolean value to set.
1628 @return Return the Value that was set.
1636 IN BOOLEAN Value
1641 This function provides a means by which to set a value for a given PCD token.
1643 Sets the 8-bit value for the token specified by TokenNumber
1644 to the value specified by Value.
1646 @param[in] TokenNumber The PCD token number to set a current value for.
1647 @param[in] Value The 8-bit value to set.
1656 IN UINT8 Value
1660 This function provides a means by which to set a value for a given PCD token.
1662 Sets the 16-bit value for the token specified by TokenNumber
1663 to the value specified by Value.
1665 @param[in] TokenNumber The PCD token number to set a current value for.
1666 @param[in] Value The 16-bit value to set.
1675 IN UINT16 Value
1679 This function provides a means by which to set a value for a given PCD token.
1681 Sets the 32-bit value for the token specified by TokenNumber
1682 to the value specified by Value.
1684 @param[in] TokenNumber The PCD token number to set a current value for.
1685 @param[in] Value The 32-bit value to set.
1694 IN UINT32 Value
1698 This function provides a means by which to set a value for a given PCD token.
1700 Sets the 64-bit value for the token specified by TokenNumber
1701 to the value specified by Value.
1703 @param[in] TokenNumber The PCD token number to set a current value for.
1704 @param[in] Value The 64-bit value to set.
1713 IN UINT64 Value
1717 This function provides a means by which to set a value for a given PCD token.
1719 Sets a buffer for the token specified by TokenNumber to the value specified
1731 @param[in] TokenNumber The PCD token number to set a current value for.
1747 This function provides a means by which to set a value for a given PCD token.
1749 Sets the boolean value for the token specified by TokenNumber
1750 to the value specified by Value.
1752 @param[in] TokenNumber The PCD token number to set a current value for.
1753 @param[in] Value The boolean value to set.
1762 IN BOOLEAN Value
1766 This function provides a means by which to set a value for a given PCD token.
1768 Sets the 8-bit value for the token specified by TokenNumber
1769 to the value specified by Value.
1773 @param[in] Guid The pointer to a 128-bit unique value that
1774 designates which namespace to set a value from.
1775 @param[in] TokenNumber The PCD token number to set a current value for.
1776 @param[in] Value The 8-bit value to set.
1786 IN UINT8 Value
1790 This function provides a means by which to set a value for a given PCD token.
1792 Sets the 16-bit value for the token specified by TokenNumber
1793 to the value specified by Value.
1797 @param[in] Guid The pointer to a 128-bit unique value that
1798 designates which namespace to set a value from.
1799 @param[in] TokenNumber The PCD token number to set a current value for.
1800 @param[in] Value The 16-bit value to set.
1810 IN UINT16 Value
1814 This function provides a means by which to set a value for a given PCD token.
1816 Sets the 32-bit value for the token specified by TokenNumber
1817 to the value specified by Value.
1821 @param[in] Guid The pointer to a 128-bit unique value that
1822 designates which namespace to set a value from.
1823 @param[in] TokenNumber The PCD token number to set a current value for.
1824 @param[in] Value The 32-bit value to set.
1834 IN UINT32 Value
1838 This function provides a means by which to set a value for a given PCD token.
1840 Sets the 64-bit value for the token specified by TokenNumber
1841 to the value specified by Value.
1845 @param[in] Guid The pointer to a 128-bit unique value that
1846 designates which namespace to set a value from.
1847 @param[in] TokenNumber The PCD token number to set a current value for.
1848 @param[in] Value The 64-bit value to set.
1858 IN UINT64 Value
1862 This function provides a means by which to set a value for a given PCD token.
1864 Sets a buffer for the token specified by TokenNumber to the value specified by
1874 @param[in] Guid Pointer to a 128-bit unique value that
1875 designates which namespace to set a value from.
1876 @param[in] TokenNumber The PCD token number to set a current value for.
1893 This function provides a means by which to set a value for a given PCD token.
1895 Sets the boolean value for the token specified by TokenNumber
1896 to the value specified by Value.
1900 @param[in] Guid The pointer to a 128-bit unique value that
1901 designates which namespace to set a value from.
1902 @param[in] TokenNumber The PCD token number to set a current value for.
1903 @param[in] Value The boolean value to set.
1913 IN BOOLEAN Value
1919 Firstly, it notifies the module that did the registration that the value of this
1922 the set operation and override the value been set if necessary. After the invocation of
1950 @param[in] Guid Pointer to a 128-bit unique value that designates which
1951 namespace to set a value from. If NULL, then the default
2000 @param[in] Guid Pointer to a 128-bit unique value that designates which namespace
2001 to set a value from. If NULL, then the default token space is used.
2038 Sets a value of a patchable PCD entry that is type pointer.
2040 Sets the PCD entry specified by PatchVariable to the value specified by Buffer
2070 Sets a value of a patchable PCD entry that is type pointer.
2072 Sets the PCD entry specified by PatchVariable to the value specified
2102 Sets a value and size of a patchable PCD entry that is type pointer.
2104 Sets the PCD entry specified by PatchVariable to the value specified by Buffer
2137 Sets a value and size of a patchable PCD entry that is type pointer.
2139 Sets the PCD entry specified by PatchVariable to the value specified
2204 …This includes information such as the type of value the TokenNumber is associated with as well as …
2223 …This includes information such as the type of value the TokenNumber is associated with as well as …
2228 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
2245 …default SKU Id value of 0 is returned. If the platform has set a SKU Id, then the currently set SKU