Home | History | Annotate | Download | only in Library

Lines Matching refs:Value

50   Returns the Boolean value for the PCD feature flag specified by TokenName.

54 @param TokenName The name of the PCD token to retrieve a current value for.
56 @return Boolean value for the PCD feature flag.
63 Retrieves an 8-bit fixed PCD token value based on a token name.
65 Returns the 8-bit value for the token specified by TokenName.
69 @param TokenName The name of the PCD token to retrieve a current value for.
71 @return 8-bit value for the token specified by TokenName.
78 Retrieves a 16-bit fixed PCD token value based on a token name.
80 Returns the 16-bit value for the token specified by TokenName.
84 @param TokenName The name of the PCD token to retrieve a current value for.
86 @return 16-bit value for the token specified by TokenName.
93 Retrieves a 32-bit fixed PCD token value based on a token name.
95 Returns the 32-bit value for the token specified by TokenName.
99 @param TokenName The name of the PCD token to retrieve a current value for.
101 @return 32-bit value for the token specified by TokenName.
108 Retrieves a 64-bit fixed PCD token value based on a token name.
110 Returns the 64-bit value for the token specified by TokenName.
114 @param TokenName The name of the PCD token to retrieve a current value for.
116 @return 64-bit value for the token specified by TokenName.
123 Retrieves a Boolean fixed PCD token value based on a token name.
125 Returns the Boolean value for the token specified by TokenName.
129 @param TokenName The name of the PCD token to retrieve a current value for.
131 @return The Boolean value for the token.
144 @param TokenName The name of the PCD token to retrieve a current value for.
153 Retrieves an 8-bit binary patchable PCD token value based on a token name.
155 Returns the 8-bit value for the token specified by TokenName.
159 @param TokenName The name of the PCD token to retrieve a current value for.
161 @return An 8-bit binary patchable PCD token value.
167 Retrieves a 16-bit binary patchable PCD token value based on a token name.
169 Returns the 16-bit value for the token specified by TokenName.
173 @param TokenName The name of the PCD token to retrieve a current value for.
175 @return A 16-bit binary patchable PCD token value.
182 Retrieves a 32-bit binary patchable PCD token value based on a token name.
184 Returns the 32-bit value for the token specified by TokenName.
188 @param TokenName The name of the PCD token to retrieve a current value for.
190 @return A 32-bit binary patchable PCD token value.
197 Retrieves a 64-bit binary patchable PCD token value based on a token name.
199 Returns the 64-bit value for the token specified by TokenName.
203 @param TokenName The name of the PCD token to retrieve a current value for.
205 @return A 64-bit binary patchable PCD token value.
212 Retrieves a Boolean binary patchable PCD token value based on a token name.
214 Returns the Boolean value for the token specified by TokenName.
218 @param TokenName The name of the PCD token to retrieve a current value for.
220 @return The Boolean value for the token.
233 @param TokenName The name of the PCD token to retrieve a current value for.
242 Sets an 8-bit binary patchable PCD token value based on a token name.
244 Sets the 8-bit value for the token specified by TokenName. Value is returned.
248 @param TokenName The name of the binary patchable PCD token to set the current value for.
249 @param Value The 8-bit value to set.
251 @return Return the Value that was set.
254 #define PatchPcdSet8(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value))
258 Sets a 16-bit binary patchable PCD token value based on a token name.
260 Sets the 16-bit value for the token specified by TokenName. Value is returned.
264 @param TokenName The name of the binary patchable PCD token to set the current value for.
265 @param Value The 16-bit value to set.
267 @return Return the Value that was set.
270 #define PatchPcdSet16(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value))
274 Sets a 32-bit binary patchable PCD token value based on a token name.
276 Sets the 32-bit value for the token specified by TokenName. Value is returned.
280 @param TokenName The name of the binary patchable PCD token to set the current value for.
281 @param Value The 32-bit value to set.
283 @return Return the Value that was set.
286 #define PatchPcdSet32(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value))
290 Sets a 64-bit binary patchable PCD token value based on a token name.
292 Sets the 64-bit value for the token specified by TokenName. Value is returned.
296 @param TokenName The name of the binary patchable PCD token to set the current value for.
297 @param Value The 64-bit value to set.
299 @return Return the Value that was set.
302 #define PatchPcdSet64(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value))
306 Sets a Boolean binary patchable PCD token value based on a token name.
308 Sets the Boolean value for the token specified by TokenName. Value is returned.
312 @param TokenName The name of the binary patchable PCD token to set the current value for.
313 @param Value The boolean value to set.
315 @return Return the Value that was set.
318 #define PatchPcdSetBool(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value))
335 @param TokenName The name of the binary patchable PCD token to set the current value for.
337 @param Buffer Pointer to the value to set.
351 Retrieves an 8-bit PCD token value based on a token name.
353 Returns the 8-bit value for the token specified by TokenName.
356 @param TokenName The name of the PCD token to retrieve a current value for.
358 @return 8-bit value for the token specified by TokenName.
365 Retrieves a 16-bit PCD token value based on a token name.
367 Returns the 16-bit value for the token specified by TokenName.
370 @param TokenName The name of the PCD token to retrieve a current value for.
372 @return 16-bit value for the token specified by TokenName.
379 Retrieves a 32-bit PCD token value based on a token name.
381 Returns the 32-bit value for the token specified by TokenName.
384 @param TokenName The name of the PCD token to retrieve a current value for.
386 @return 32-bit value for the token specified by TokenName.
393 Retrieves a 64-bit PCD token value based on a token name.
395 Returns the 64-bit value for the token specified by TokenName.
398 @param TokenName The name of the PCD token to retrieve a current value for.
400 @return 64-bit value for the token specified by TokenName.
412 @param TokenName The name of the PCD token to retrieve a current value for.
421 Retrieves a Boolean PCD token value based on a token name.
423 Returns the Boolean value for the token specified by TokenName.
426 @param TokenName The name of the PCD token to retrieve a current value for.
428 value.
440 @param[in] TokenName The name of the PCD token to retrieve a current value size for.
454 @param[in] TokenName The name of the PCD token to retrieve a current value size for.
468 @param[in] TokenName The name of the PCD token to retrieve a current value size for.
482 @param[in] Guid Pointer to a 128-bit unique value that designates
483 which namespace to retrieve a value from.
484 @param[in] TokenNumber The PCD token number to retrieve a current value size for.
493 Sets an 8-bit PCD token value based on a token name.
495 Sets the 8-bit value for the token specified by TokenName. Value is returned.
498 @param TokenName The name of the PCD token to retrieve a current value for.
499 @param Value The 8-bit value to set.
501 @return Return the Value that was set.
504 #define PcdSet8(TokenName, Value) _PCD_SET_MODE_8_##TokenName ((Value))
508 Sets a 16-bit PCD token value based on a token name.
510 Sets the 16-bit value for the token specified by TokenName. Value is returned.
513 @param TokenName The name of the PCD token to retrieve a current value for.
514 @param Value The 16-bit value to set.
516 @return Return the Value that was set.
519 #define PcdSet16(TokenName, Value) _PCD_SET_MODE_16_##TokenName ((Value))
523 Sets a 32-bit PCD token value based on a token name.
525 Sets the 32-bit value for the token specified by TokenName. Value is returned.
528 @param TokenName The name of the PCD token to retrieve a current value for.
529 @param Value The 32-bit value to set.
531 @return Return the Value that was set.
534 #define PcdSet32(TokenName, Value) _PCD_SET_MODE_32_##TokenName ((Value))
538 Sets a 64-bit PCD token value based on a token name.
540 Sets the 64-bit value for the token specified by TokenName. Value is returned.
543 @param TokenName The name of the PCD token to retrieve a current value for.
544 @param Value The 64-bit value to set.
546 @return Return the Value that was set.
549 #define PcdSet64(TokenName, Value) _PCD_SET_MODE_64_##TokenName ((Value))
566 @param TokenName The name of the PCD token to set the current value for.
577 Sets a Boolean PCD token value based on a token name.
579 Sets the Boolean value for the token specified by TokenName. Value is returned.
582 @param TokenName The name of the PCD token to set the current value for.
583 @param Buffer The Boolean value to set.
585 @return Return the Value that was set.
588 #define PcdSetBool(TokenName, Value) _PCD_SET_MODE_BOOL_##TokenName ((Value))
592 Sets a 8-bit PCD token value based on a token name.
594 Sets the 8-bit value for the token specified by TokenName.
597 @param TokenName The name of the PCD token to retrieve a current value for.
598 @param Value The 8-bit value to set.
603 #define PcdSet8S(TokenName, Value) _PCD_SET_MODE_8_S_##TokenName ((Value))
606 Sets a 16-bit PCD token value based on a token name.
608 Sets the 16-bit value for the token specified by TokenName.
611 @param TokenName The name of the PCD token to retrieve a current value for.
612 @param Value The 16-bit value to set.
617 #define PcdSet16S(TokenName, Value) _PCD_SET_MODE_16_S_##TokenName ((Value))
620 Sets a 32-bit PCD token value based on a token name.
622 Sets the 32-bit value for the token specified by TokenName.
625 @param TokenName The name of the PCD token to retrieve a current value for.
626 @param Value The 32-bit value to set.
631 #define PcdSet32S(TokenName, Value) _PCD_SET_MODE_32_S_##TokenName ((Value))
634 Sets a 64-bit PCD token value based on a token name.
636 Sets the 64-bit value for the token specified by TokenName.
639 @param TokenName The name of the PCD token to retrieve a current value for.
640 @param Value The 64-bit value to set.
645 #define PcdSet64S(TokenName, Value) _PCD_SET_MODE_64_S_##TokenName ((Value))
661 @param TokenName The name of the PCD token to set the current value for.
674 Sets a boolean PCD token value based on a token name.
676 Sets the boolean value for the token specified by TokenName.
679 @param TokenName The name of the PCD token to retrieve a current value for.
680 @param Value The boolean value to set.
685 #define PcdSetBoolS(TokenName, Value) _PCD_SET_MODE_BOOL_S_##TokenName ((Value))
692 @param Guid Pointer to a 128-bit unique value that designates
693 which namespace to retrieve a value from.
694 @param TokenName The name of the PCD token to retrieve a current value for.
702 Retrieves an 8-bit PCD token value based on a GUID and a token name.
704 Returns the 8-bit value for the token specified by Guid and TokenName.
710 @param Guid Pointer to a 128-bit unique value that designates
711 which namespace to retrieve a value from.
712 @param TokenName The name of the PCD token to retrieve a current value for.
714 @return An 8-bit PCD token value.
720 Retrieves a 16-bit PCD token value based on a GUID and a token name.
722 Returns the 16-bit value for the token specified by Guid and TokenName.
728 @param Guid Pointer to a 128-bit unique value that designates
729 which namespace to retrieve a value from.
730 @param TokenName The name of the PCD token to retrieve a current value for.
732 @return A 16-bit PCD token value.
739 Retrieves a 32-bit PCD token value based on a GUID and a token name.
741 Returns the 32-bit value for the token specified by Guid and TokenName.
747 @param Guid Pointer to a 128-bit unique value that designates
748 which namespace to retrieve a value from.
749 @param TokenName The name of the PCD token to retrieve a current value for.
751 @return A 32-bit PCD token value.
758 Retrieves a 64-bit PCD token value based on a GUID and a token name.
760 Returns the 64-bit value for the token specified by Guid and TokenName.
766 @param Guid Pointer to a 128-bit unique value that designates
767 which namespace to retrieve a value from.
768 @param TokenName The name of the PCD token to retrieve a current value for.
770 @return A 64-bit PCD token value.
785 @param Guid Pointer to a 128-bit unique value that designates
786 which namespace to retrieve a value from.
787 @param TokenName The name of the PCD token to retrieve a current value for.
796 Retrieves a Boolean PCD token value based on a GUID and a token name.
798 Returns the Boolean value for the token specified by Guid and TokenName.
804 @param Guid Pointer to a 128-bit unique value that designates
805 which namespace to retrieve a value from.
806 @param TokenName The name of the PCD token to retrieve a current value for.
808 @return A Boolean PCD token value.
817 Sets an 8-bit PCD token value based on a GUID and a token name.
819 Sets the 8-bit value for the token specified by Guid and TokenName. Value is returned.
825 @param Guid Pointer to a 128-bit unique value that designates
826 which namespace to retrieve a value from.
827 @param TokenName The name of the PCD token to set the current value for.
828 @param Value The 8-bit value to set.
830 @return Return the Value that was set.
833 #define PcdSetEx8(Guid, TokenName, Value) LibPcdSetEx8 ((Guid), PcdTokenEx(Guid,TokenName), (Value))
837 Sets a 16-bit PCD token value based on a GUID and a token name.
839 Sets the 16-bit value for the token specified by Guid and TokenName. Value is returned.
845 @param Guid Pointer to a 128-bit unique value that designates
846 which namespace to retrieve a value from.
847 @param TokenName The name of the PCD token to set the current value for.
848 @param Value The 16-bit value to set.
850 @return Return the Value that was set.
853 #define PcdSetEx16(Guid, TokenName, Value) LibPcdSetEx16 ((Guid), PcdTokenEx(Guid,TokenName), (Value))
857 Sets a 32-bit PCD token value based on a GUID and a token name.
859 Sets the 32-bit value for the token specified by Guid and TokenName. Value is returned.
865 @param Guid Pointer to a 128-bit unique value that designates
866 which namespace to retrieve a value from.
867 @param TokenName The name of the PCD token to set the current value for.
868 @param Value The 32-bit value to set.
870 @return Return the Value that was set.
873 #define PcdSetEx32(Guid, TokenName, Value) LibPcdSetEx32 ((Guid), PcdTokenEx(Guid,TokenName), (Value))
877 value based on a GUID and a token name.
879 Sets the 64-bit value for the token specified by Guid and TokenName. Value is returned.
885 @param Guid Pointer to a 128-bit unique value that designates
886 which namespace to retrieve a value from.
887 @param TokenName The name of the PCD token to set the current value for.
888 @param Value The 64-bit value to set.
890 @return Return the Value that was set.
893 #define PcdSetEx64(Guid, TokenName, Value) LibPcdSetEx64 ((Guid), PcdTokenEx(Guid,TokenName), (Value))
912 @param Guid Pointer to a 128-bit unique value that designates
913 which namespace to retrieve a value from.
914 @param TokenName The name of the PCD token to set the current value for.
926 Sets a Boolean PCD token value based on a GUID and a token name.
928 Sets the Boolean value for the token specified by Guid and TokenName. Value is returned.
934 @param Guid Pointer to a 128-bit unique value that designates
935 which namespace to retrieve a value from.
936 @param TokenName The name of the PCD token to set the current value for.
937 @param Value The Boolean value to set.
939 @return Return the Value that was set.
942 #define PcdSetExBool(Guid, TokenName, Value) \
943 LibPcdSetExBool((Guid), PcdTokenEx(Guid,TokenName), (Value))
947 Sets an 8-bit PCD token value based on a GUID and a token name.
949 Sets the 8-bit value for the token specified by Guid and TokenName.
955 @param Guid Pointer to a 128-bit unique value that designates
956 which namespace to retrieve a value from.
957 @param TokenName The name of the PCD token to set the current value for.
958 @param Value The 8-bit value to set.
963 #define PcdSetEx8S(Guid, TokenName, Value) LibPcdSetEx8S ((Guid), PcdTokenEx(Guid,TokenName), (Value))
966 Sets an 16-bit PCD token value based on a GUID and a token name.
968 Sets the 16-bit value for the token specified by Guid and TokenName.
974 @param Guid Pointer to a 128-bit unique value that designates
975 which namespace to retrieve a value from.
976 @param TokenName The name of the PCD token to set the current value for.
977 @param Value The 16-bit value to set.
982 #define PcdSetEx16S(Guid, TokenName, Value) LibPcdSetEx16S ((Guid), PcdTokenEx(Guid,TokenName), (Value))
985 Sets an 32-bit PCD token value based on a GUID and a token name.
987 Sets the 32-bit value for the token specified by Guid and TokenName.
993 @param Guid Pointer to a 128-bit unique value that designates
994 which namespace to retrieve a value from.
995 @param TokenName The name of the PCD token to set the current value for.
996 @param Value The 32-bit value to set.
1001 #define PcdSetEx32S(Guid, TokenName, Value) LibPcdSetEx32S ((Guid), PcdTokenEx(Guid,TokenName), (Value))
1004 Sets an 64-bit PCD token value based on a GUID and a token name.
1006 Sets the 64-bit value for the token specified by Guid and TokenName.
1012 @param Guid Pointer to a 128-bit unique value that designates
1013 which namespace to retrieve a value from.
1014 @param TokenName The name of the PCD token to set the current value for.
1015 @param Value The 64-bit value to set.
1020 #define PcdSetEx64S(Guid, TokenName, Value) LibPcdSetEx64S ((Guid), PcdTokenEx(Guid,TokenName), (Value))
1038 @param Guid Pointer to a 128-bit unique value that designates
1039 which namespace to retrieve a value from.
1040 @param TokenName The name of the PCD token to set the current value for.
1052 Sets an boolean PCD token value based on a GUID and a token name.
1054 Sets the boolean value for the token specified by Guid and TokenName.
1060 @param Guid Pointer to a 128-bit unique value that designates
1061 which namespace to retrieve a value from.
1062 @param TokenName The name of the PCD token to set the current value for.
1063 @param Value The boolean value to set.
1068 #define PcdSetExBoolS(Guid, TokenName, Value) \
1069 LibPcdSetExBoolS ((Guid), PcdTokenEx(Guid,TokenName), (Value))
1074 Sets the current SKU in the PCD database to the value specified by SkuId. SkuId is returned.
1076 @param SkuId The SKU value that will be used when the PCD service retrieves and sets values
1090 This function provides a means by which to retrieve a value for a given PCD token.
1092 Returns the 8-bit value for the token specified by TokenNumber.
1094 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1096 @return Returns the 8-bit value for the token specified by TokenNumber.
1107 This function provides a means by which to retrieve a value for a given PCD token.
1109 Returns the 16-bit value for the token specified by TokenNumber.
1111 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1113 @return Returns the 16-bit value for the token specified by TokenNumber.
1124 This function provides a means by which to retrieve a value for a given PCD token.
1126 Returns the 32-bit value for the token specified by TokenNumber.
1128 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1130 @return Returns the 32-bit value for the token specified by TokenNumber.
1141 This function provides a means by which to retrieve a value for a given PCD token.
1143 Returns the 64-bit value for the token specified by TokenNumber.
1145 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1147 @return Returns the 64-bit value for the token specified by TokenNumber.
1158 This function provides a means by which to retrieve a value for a given PCD token.
1162 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1175 This function provides a means by which to retrieve a value for a given PCD token.
1177 Returns the Boolean value of the token specified by TokenNumber.
1179 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1181 @return Returns the Boolean value of the token specified by TokenNumber.
1194 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1207 This function provides a means by which to retrieve a value for a given PCD token.
1209 Returns the 8-bit value for the token specified by TokenNumber and Guid.
1213 @param[in] Guid Pointer to a 128-bit unique value that designates
1214 which namespace to retrieve a value from.
1215 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1229 This function provides a means by which to retrieve a value for a given PCD token.
1231 Returns the 16-bit value for the token specified by TokenNumber and Guid.
1235 @param[in] Guid Pointer to a 128-bit unique value that designates
1236 which namespace to retrieve a value from.
1237 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1251 Returns the 32-bit value for the token specified by TokenNumber and Guid.
1254 @param[in] Guid Pointer to a 128-bit unique value that designates
1255 which namespace to retrieve a value from.
1256 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1270 This function provides a means by which to retrieve a value for a given PCD token.
1272 Returns the 64-bit value for the token specified by TokenNumber and Guid.
1276 @param[in] Guid Pointer to a 128-bit unique value that designates
1277 which namespace to retrieve a value from.
1278 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1292 This function provides a means by which to retrieve a value for a given PCD token.
1298 @param[in] Guid Pointer to a 128-bit unique value that designates
1299 which namespace to retrieve a value from.
1300 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1314 This function provides a means by which to retrieve a value for a given PCD token.
1316 Returns the Boolean value of the token specified by TokenNumber and Guid.
1320 @param[in] Guid Pointer to a 128-bit unique value that designates
1321 which namespace to retrieve a value from.
1322 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1342 @param[in] Guid Pointer to a 128-bit unique value that designates
1343 which namespace to retrieve a value from.
1344 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1359 This function provides a means by which to set a value for a given PCD token.
1361 Sets the 8-bit value for the token specified by TokenNumber
1362 to the value specified by Value. Value is returned.
1364 @param[in] TokenNumber The PCD token number to set a current value for.
1365 @param[in] Value The 8-bit value to set.
1367 @return Return the Value that was set.
1374 IN UINT8 Value
1379 This function provides a means by which to set a value for a given PCD token.
1381 Sets the 16-bit value for the token specified by TokenNumber
1382 to the value specified by Value. Value is returned.
1384 @param[in] TokenNumber The PCD token number to set a current value for.
1385 @param[in] Value The 16-bit value to set.
1387 @return Return the Value that was set.
1394 IN UINT16 Value
1399 This function provides a means by which to set a value for a given PCD token.
1401 Sets the 32-bit value for the token specified by TokenNumber
1402 to the value specified by Value. Value is returned.
1404 @param[in] TokenNumber The PCD token number to set a current value for.
1405 @param[in] Value The 32-bit value to set.
1407 @return Return the Value that was set.
1414 IN UINT32 Value
1419 This function provides a means by which to set a value for a given PCD token.
1421 Sets the 64-bit value for the token specified by TokenNumber
1422 to the value specified by Value. Value is returned.
1424 @param[in] TokenNumber The PCD token number to set a current value for.
1425 @param[in] Value The 64-bit value to set.
1427 @return Return the Value that was set.
1434 IN UINT64 Value
1439 This function provides a means by which to set a value for a given PCD token.
1441 Sets a buffer for the token specified by TokenNumber to the value
1453 @param[in] TokenNumber The PCD token number to set a current value for.
1470 This function provides a means by which to set a value for a given PCD token.
1472 Sets the Boolean value for the token specified by TokenNumber
1473 to the value specified by Value. Value is returned.
1475 @param[in] TokenNumber The PCD token number to set a current value for.
1476 @param[in] Value The boolean value to set.
1478 @return Return the Value that was set.
1485 IN BOOLEAN Value
1490 This function provides a means by which to set a value for a given PCD token.
1492 Sets the 8-bit value for the token specified by TokenNumber and
1493 Guid to the value specified by Value. Value is returned.
1497 @param[in] Guid Pointer to a 128-bit unique value that
1498 designates which namespace to set a value from.
1499 @param[in] TokenNumber The PCD token number to set a current value for.
1500 @param[in] Value The 8-bit value to set.
1502 @return Return the Value that was set.
1510 IN UINT8 Value
1515 This function provides a means by which to set a value for a given PCD token.
1517 Sets the 16-bit value for the token specified by TokenNumber and
1518 Guid to the value specified by Value. Value is returned.
1522 @param[in] Guid Pointer to a 128-bit unique value that
1523 designates which namespace to set a value from.
1524 @param[in] TokenNumber The PCD token number to set a current value for.
1525 @param[in] Value The 16-bit value to set.
1527 @return Return the Value that was set.
1535 IN UINT16 Value
1540 This function provides a means by which to set a value for a given PCD token.
1542 Sets the 32-bit value for the token specified by TokenNumber and
1543 Guid to the value specified by Value. Value is returned.
1547 @param[in] Guid Pointer to a 128-bit unique value that
1548 designates which namespace to set a value from.
1549 @param[in] TokenNumber The PCD token number to set a current value for.
1550 @param[in] Value The 32-bit value to set.
1552 @return Return the Value that was set.
1560 IN UINT32 Value
1565 This function provides a means by which to set a value for a given PCD token.
1567 Sets the 64-bit value for the token specified by TokenNumber and
1568 Guid to the value specified by Value. Value is returned.
1572 @param[in] Guid Pointer to a 128-bit unique value that
1573 designates which namespace to set a value from.
1574 @param[in] TokenNumber The PCD token number to set a current value for.
1575 @param[in] Value The 64-bit value to set.
1577 @return Return the Value that was set.
1585 IN UINT64 Value
1590 This function provides a means by which to set a value for a given PCD token.
1592 Sets a buffer for the token specified by TokenNumber to the value specified by
1602 @param[in] Guid Pointer to a 128-bit unique value that
1603 designates which namespace to set a value from.
1604 @param[in] TokenNumber The PCD token number to set a current value for.
1622 This function provides a means by which to set a value for a given PCD token.
1624 Sets the Boolean value for the token specified by TokenNumber and
1625 Guid to the value specified by Value. Value is returned.
1629 @param[in] Guid Pointer to a 128-bit unique value that
1630 designates which namespace to set a value from.
1631 @param[in] TokenNumber The PCD token number to set a current value for.
1632 @param[in] Value The Boolean value to set.
1634 @return Return the Value that was set.
1642 IN BOOLEAN Value
1647 This function provides a means by which to set a value for a given PCD token.
1649 Sets the 8-bit value for the token specified by TokenNumber
1650 to the value specified by Value.
1652 @param[in] TokenNumber The PCD token number to set a current value for.
1653 @param[in] Value The 8-bit value to set.
1662 IN UINT8 Value
1666 This function provides a means by which to set a value for a given PCD token.
1668 Sets the 16-bit value for the token specified by TokenNumber
1669 to the value specified by Value.
1671 @param[in] TokenNumber The PCD token number to set a current value for.
1672 @param[in] Value The 16-bit value to set.
1681 IN UINT16 Value
1685 This function provides a means by which to set a value for a given PCD token.
1687 Sets the 32-bit value for the token specified by TokenNumber
1688 to the value specified by Value.
1690 @param[in] TokenNumber The PCD token number to set a current value for.
1691 @param[in] Value The 32-bit value to set.
1700 IN UINT32 Value
1704 This function provides a means by which to set a value for a given PCD token.
1706 Sets the 64-bit value for the token specified by TokenNumber
1707 to the value specified by Value.
1709 @param[in] TokenNumber The PCD token number to set a current value for.
1710 @param[in] Value The 64-bit value to set.
1719 IN UINT64 Value
1723 This function provides a means by which to set a value for a given PCD token.
1725 Sets a buffer for the token specified by TokenNumber to the value specified
1737 @param[in] TokenNumber The PCD token number to set a current value for.
1753 This function provides a means by which to set a value for a given PCD token.
1755 Sets the boolean value for the token specified by TokenNumber
1756 to the value specified by Value.
1758 @param[in] TokenNumber The PCD token number to set a current value for.
1759 @param[in] Value The boolean value to set.
1768 IN BOOLEAN Value
1772 This function provides a means by which to set a value for a given PCD token.
1774 Sets the 8-bit value for the token specified by TokenNumber
1775 to the value specified by Value.
1779 @param[in] Guid The pointer to a 128-bit unique value that
1780 designates which namespace to set a value from.
1781 @param[in] TokenNumber The PCD token number to set a current value for.
1782 @param[in] Value The 8-bit value to set.
1792 IN UINT8 Value
1796 This function provides a means by which to set a value for a given PCD token.
1798 Sets the 16-bit value for the token specified by TokenNumber
1799 to the value specified by Value.
1803 @param[in] Guid The pointer to a 128-bit unique value that
1804 designates which namespace to set a value from.
1805 @param[in] TokenNumber The PCD token number to set a current value for.
1806 @param[in] Value The 16-bit value to set.
1816 IN UINT16 Value
1820 This function provides a means by which to set a value for a given PCD token.
1822 Sets the 32-bit value for the token specified by TokenNumber
1823 to the value specified by Value.
1827 @param[in] Guid The pointer to a 128-bit unique value that
1828 designates which namespace to set a value from.
1829 @param[in] TokenNumber The PCD token number to set a current value for.
1830 @param[in] Value The 32-bit value to set.
1840 IN UINT32 Value
1844 This function provides a means by which to set a value for a given PCD token.
1846 Sets the 64-bit value for the token specified by TokenNumber
1847 to the value specified by Value.
1851 @param[in] Guid The pointer to a 128-bit unique value that
1852 designates which namespace to set a value from.
1853 @param[in] TokenNumber The PCD token number to set a current value for.
1854 @param[in] Value The 64-bit value to set.
1864 IN UINT64 Value
1868 This function provides a means by which to set a value for a given PCD token.
1870 Sets a buffer for the token specified by TokenNumber to the value specified by
1880 @param[in] Guid Pointer to a 128-bit unique value that
1881 designates which namespace to set a value from.
1882 @param[in] TokenNumber The PCD token number to set a current value for.
1899 This function provides a means by which to set a value for a given PCD token.
1901 Sets the boolean value for the token specified by TokenNumber
1902 to the value specified by Value.
1906 @param[in] Guid The pointer to a 128-bit unique value that
1907 designates which namespace to set a value from.
1908 @param[in] TokenNumber The PCD token number to set a current value for.
1909 @param[in] Value The boolean value to set.
1919 IN BOOLEAN Value
1925 Firstly, it notifies the module that did the registration that the value of this
1928 the set operation and override the value been set if necessary. After the invocation of
1956 @param[in] Guid Pointer to a 128-bit unique value that designates which
1957 namespace to set a value from. If NULL, then the default
2006 @param[in] Guid Pointer to a 128-bit unique value that designates which namespace
2007 to set a value from. If NULL, then the default token space is used.
2044 Sets a value of a patchable PCD entry that is type pointer.
2046 Sets the PCD entry specified by PatchVariable to the value specified by Buffer
2076 Sets a value of a patchable PCD entry that is type pointer.
2078 Sets the PCD entry specified by PatchVariable to the value specified
2108 Sets a value and size of a patchable PCD entry that is type pointer.
2110 Sets the PCD entry specified by PatchVariable to the value specified by Buffer
2143 Sets a value and size of a patchable PCD entry that is type pointer.
2145 Sets the PCD entry specified by PatchVariable to the value specified
2210 This includes information such as the type of value the TokenNumber is associated with as well as possible
2229 This includes information such as the type of value the TokenNumber is associated with as well as possible
2234 @param[in] Guid The 128-bit unique value that designates the namespace from which to extract the value.
2251 default SKU Id value of 0 is returned. If the platform has set a SKU Id, then the currently set SKU