Lines Matching full:value

41   Returns the Boolean value for the PCD feature flag specified by TokenName.
45 @param TokenName The name of the PCD token to retrieve a current value for.
47 @return Boolean value for the PCD feature flag.
53 Retrieves an 8-bit fixed PCD token value based on a token name.
55 Returns the 8-bit value for the token specified by TokenName.
59 @param TokenName The name of the PCD token to retrieve a current value for.
61 @return 8-bit value for the token specified by TokenName.
67 Retrieves a 16-bit fixed PCD token value based on a token name.
69 Returns the 16-bit value for the token specified by TokenName.
73 @param TokenName The name of the PCD token to retrieve a current value for.
75 @return 16-bit value for the token specified by TokenName.
81 Retrieves a 32-bit fixed PCD token value based on a token name.
83 Returns the 32-bit value for the token specified by TokenName.
87 @param TokenName The name of the PCD token to retrieve a current value for.
89 @return 32-bit value for the token specified by TokenName.
95 Retrieves a 64-bit fixed PCD token value based on a token name.
97 Returns the 64-bit value for the token specified by TokenName.
101 @param TokenName The name of the PCD token to retrieve a current value for.
103 @return 64-bit value for the token specified by TokenName.
109 Retrieves a Boolean fixed PCD token value based on a token name.
111 Returns the Boolean value for the token specified by TokenName.
115 @param TokenName The name of the PCD token to retrieve a current value for.
117 @return The Boolean value for the token.
129 @param TokenName The name of the PCD token to retrieve a current value for.
137 Retrieves an 8-bit binary patchable PCD token value based on a token name.
139 Returns the 8-bit value for the token specified by TokenName.
143 @param TokenName The name of the PCD token to retrieve a current value for.
145 @return An 8-bit binary patchable PCD token value.
151 Retrieves a 16-bit binary patchable PCD token value based on a token name.
153 Returns the 16-bit value for the token specified by TokenName.
157 @param TokenName The name of the PCD token to retrieve a current value for.
159 @return A 16-bit binary patchable PCD token value.
165 Retrieves a 32-bit binary patchable PCD token value based on a token name.
167 Returns the 32-bit value for the token specified by TokenName.
171 @param TokenName The name of the PCD token to retrieve a current value for.
173 @return A 32-bit binary patchable PCD token value.
179 Retrieves a 64-bit binary patchable PCD token value based on a token name.
181 Returns the 64-bit value for the token specified by TokenName.
185 @param TokenName The name of the PCD token to retrieve a current value for.
187 @return A 64-bit binary patchable PCD token value.
193 Retrieves a Boolean binary patchable PCD token value based on a token name.
195 Returns the Boolean value for the token specified by TokenName.
199 @param TokenName The name of the PCD token to retrieve a current value for.
201 @return The Boolean value for the token.
213 @param TokenName The name of the PCD token to retrieve a current value for.
221 Sets an 8-bit binary patchable PCD token value based on a token name.
223 Sets the 8-bit value for the token specified by TokenName. Value is returned.
227 @param TokenName The name of the binary patchable PCD token to set the current value for.
228 @param Value The 8-bit value to set.
230 @return Return the Value that was set.
233 #define PatchPcdSet8(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value)) argument
236 Sets a 16-bit binary patchable PCD token value based on a token name.
238 Sets the 16-bit value for the token specified by TokenName. Value is returned.
242 @param TokenName The name of the binary patchable PCD token to set the current value for.
243 @param Value The 16-bit value to set.
245 @return Return the Value that was set.
248 #define PatchPcdSet16(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value)) argument
251 Sets a 32-bit binary patchable PCD token value based on a token name.
253 Sets the 32-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 32-bit value to set.
260 @return Return the Value that was set.
263 #define PatchPcdSet32(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value)) argument
266 Sets a 64-bit binary patchable PCD token value based on a token name.
268 Sets the 64-bit value for the token specified by TokenName. Value is returned.
272 @param TokenName The name of the binary patchable PCD token to set the current value for.
273 @param Value The 64-bit value to set.
275 @return Return the Value that was set.
278 #define PatchPcdSet64(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value)) argument
281 Sets a Boolean binary patchable PCD token value based on a token name.
283 Sets the Boolean value for the token specified by TokenName. Value is returned.
287 @param TokenName The name of the binary patchable PCD token to set the current value for.
288 @param Value The boolean value to set.
290 @return Return the Value that was set.
293 #define PatchPcdSetBool(TokenName, Value) (_gPcd_BinaryPatch_##TokenName = (Value)) argument
309 @param TokenName The name of the binary patchable PCD token to set the current value for.
311 @param Buffer Pointer to the value to set.
326 Retrieves an 8-bit PCD token value based on a token name.
328 Returns the 8-bit value for the token specified by TokenName.
331 @param TokenName The name of the PCD token to retrieve a current value for.
333 @return 8-bit value for the token specified by TokenName.
339 Retrieves a 16-bit PCD token value based on a token name.
341 Returns the 16-bit value for the token specified by TokenName.
344 @param TokenName The name of the PCD token to retrieve a current value for.
346 @return 16-bit value for the token specified by TokenName.
352 Retrieves a 32-bit PCD token value based on a token name.
354 Returns the 32-bit value for the token specified by TokenName.
357 @param TokenName The name of the PCD token to retrieve a current value for.
359 @return 32-bit value for the token specified by TokenName.
365 Retrieves a 64-bit PCD token value based on a token name.
367 Returns the 64-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 64-bit value for the token specified by TokenName.
383 @param TokenName The name of the PCD token to retrieve a current value for.
391 Retrieves a Boolean PCD token value based on a token name.
393 Returns the Boolean value for the token specified by TokenName.
396 @param TokenName The name of the PCD token to retrieve a current value for.
398 @return A Boolean PCD token value.
409 @param[in] TokenName The name of the PCD token to retrieve a current value size for.
422 @param[in] TokenName The name of the PCD token to retrieve a current value size for.
435 @param[in] TokenName The name of the PCD token to retrieve a current value size for.
448 @param[in] Guid Pointer to a 128-bit unique value that designates
449 which namespace to retrieve a value from.
450 @param[in] TokenNumber The PCD token number to retrieve a current value size for.
458 Sets a 8-bit PCD token value based on a token name.
460 Sets the 8-bit value for the token specified by TokenName.
463 @param TokenName The name of the PCD token to retrieve a current value for.
464 @param Value The 8-bit value to set.
469 #define PcdSet8S(TokenName, Value) _PCD_SET_MODE_8_S_##TokenName ((Value)) argument
472 Sets a 16-bit PCD token value based on a token name.
474 Sets the 16-bit value for the token specified by TokenName.
477 @param TokenName The name of the PCD token to retrieve a current value for.
478 @param Value The 16-bit value to set.
483 #define PcdSet16S(TokenName, Value) _PCD_SET_MODE_16_S_##TokenName ((Value)) argument
486 Sets a 32-bit PCD token value based on a token name.
488 Sets the 32-bit value for the token specified by TokenName.
491 @param TokenName The name of the PCD token to retrieve a current value for.
492 @param Value The 32-bit value to set.
497 #define PcdSet32S(TokenName, Value) _PCD_SET_MODE_32_S_##TokenName ((Value)) argument
500 Sets a 64-bit PCD token value based on a token name.
502 Sets the 64-bit value for the token specified by TokenName.
505 @param TokenName The name of the PCD token to retrieve a current value for.
506 @param Value The 64-bit value to set.
511 #define PcdSet64S(TokenName, Value) _PCD_SET_MODE_64_S_##TokenName ((Value)) argument
527 @param TokenName The name of the PCD token to set the current value for.
538 Sets a boolean PCD token value based on a token name.
540 Sets the boolean value for the token specified by TokenName.
543 @param TokenName The name of the PCD token to retrieve a current value for.
544 @param Value The boolean value to set.
549 #define PcdSetBoolS(TokenName, Value) _PCD_SET_MODE_BOOL_S_##TokenName ((Value)) argument
557 @param Guid Pointer to a 128-bit unique value that designates
558 which namespace to retrieve a value from.
559 @param TokenName The name of the PCD token to retrieve a current value for.
567 Retrieves an 8-bit PCD token value based on a GUID and a token name.
569 Returns the 8-bit value for the token specified by Guid and TokenName.
575 @param Guid Pointer to a 128-bit unique value that designates
576 which namespace to retrieve a value from.
577 @param TokenName The name of the PCD token to retrieve a current value for.
579 @return An 8-bit PCD token value.
585 Retrieves a 16-bit PCD token value based on a GUID and a token name.
587 Returns the 16-bit value for the token specified by Guid and TokenName.
593 @param Guid Pointer to a 128-bit unique value that designates
594 which namespace to retrieve a value from.
595 @param TokenName The name of the PCD token to retrieve a current value for.
597 @return A 16-bit PCD token value.
603 Retrieves a 32-bit PCD token value based on a GUID and a token name.
605 Returns the 32-bit value for the token specified by Guid and TokenName.
611 @param Guid Pointer to a 128-bit unique value that designates
612 which namespace to retrieve a value from.
613 @param TokenName The name of the PCD token to retrieve a current value for.
615 @return A 32-bit PCD token value.
621 Retrieves a 64-bit PCD token value based on a GUID and a token name.
623 Returns the 64-bit value for the token specified by Guid and TokenName.
629 @param Guid Pointer to a 128-bit unique value that designates
630 which namespace to retrieve a value from.
631 @param TokenName The name of the PCD token to retrieve a current value for.
633 @return A 64-bit PCD token value.
647 @param Guid Pointer to a 128-bit unique value that designates
648 which namespace to retrieve a value from.
649 @param TokenName The name of the PCD token to retrieve a current value for.
657 Retrieves a Boolean PCD token value based on a GUID and a token name.
659 Returns the Boolean value for the token specified by Guid and TokenName.
665 @param Guid Pointer to a 128-bit unique value that designates
666 which namespace to retrieve a value from.
667 @param TokenName The name of the PCD token to retrieve a current value for.
669 @return A Boolean PCD token value.
675 Sets an 8-bit PCD token value based on a GUID and a token name.
677 Sets the 8-bit value for the token specified by Guid and TokenName.
683 @param Guid Pointer to a 128-bit unique value that designates
684 which namespace to retrieve a value from.
685 @param TokenName The name of the PCD token to set the current value for.
686 @param Value The 8-bit value to set.
691 #define PcdSetEx8S(Guid, TokenName, Value) LibPcdSetEx8S ((Guid), PcdTokenEx(Guid,TokenName), (Val… argument
694 Sets an 16-bit PCD token value based on a GUID and a token name.
696 Sets the 16-bit value for the token specified by Guid and TokenName.
702 @param Guid Pointer to a 128-bit unique value that designates
703 which namespace to retrieve a value from.
704 @param TokenName The name of the PCD token to set the current value for.
705 @param Value The 16-bit value to set.
710 #define PcdSetEx16S(Guid, TokenName, Value) LibPcdSetEx16S ((Guid), PcdTokenEx(Guid,TokenName), (V… argument
713 Sets an 32-bit PCD token value based on a GUID and a token name.
715 Sets the 32-bit value for the token specified by Guid and TokenName.
721 @param Guid Pointer to a 128-bit unique value that designates
722 which namespace to retrieve a value from.
723 @param TokenName The name of the PCD token to set the current value for.
724 @param Value The 32-bit value to set.
729 #define PcdSetEx32S(Guid, TokenName, Value) LibPcdSetEx32S ((Guid), PcdTokenEx(Guid,TokenName), (V… argument
732 Sets an 64-bit PCD token value based on a GUID and a token name.
734 Sets the 64-bit value for the token specified by Guid and TokenName.
740 @param Guid Pointer to a 128-bit unique value that designates
741 which namespace to retrieve a value from.
742 @param TokenName The name of the PCD token to set the current value for.
743 @param Value The 64-bit value to set.
748 #define PcdSetEx64S(Guid, TokenName, Value) LibPcdSetEx64S ((Guid), PcdTokenEx(Guid,TokenName), (V… argument
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 set the current value for.
779 Sets an boolean PCD token value based on a GUID and a token name.
781 Sets the boolean value for the token specified by Guid and TokenName.
787 @param Guid Pointer to a 128-bit unique value that designates
788 which namespace to retrieve a value from.
789 @param TokenName The name of the PCD token to set the current value for.
790 @param Value The boolean value to set.
795 #define PcdSetExBoolS(Guid, TokenName, Value) \ argument
796 … LibPcdSetExBoolS ((Guid), PcdTokenEx(Guid,TokenName), (Value))
801 Sets the current SKU in the PCD database to the value specified by SkuId. SkuId is returned.
803 @param SkuId The SKU value that will be used when the PCD service retrieves and sets values
816 This function provides a means by which to retrieve a value for a given PCD token.
818 Returns the 8-bit value for the token specified by TokenNumber.
820 @param[in] TokenNumber The PCD token number to retrieve a current value for.
822 @return Returns the 8-bit value for the token specified by TokenNumber.
832 This function provides a means by which to retrieve a value for a given PCD token.
834 Returns the 16-bit value for the token specified by TokenNumber.
836 @param[in] TokenNumber The PCD token number to retrieve a current value for.
838 @return Returns the 16-bit value for the token specified by TokenNumber.
848 This function provides a means by which to retrieve a value for a given PCD token.
850 Returns the 32-bit value for the token specified by TokenNumber.
852 @param[in] TokenNumber The PCD token number to retrieve a current value for.
854 @return Returns the 32-bit value for the token specified by TokenNumber.
864 This function provides a means by which to retrieve a value for a given PCD token.
866 Returns the 64-bit value for the token specified by TokenNumber.
868 @param[in] TokenNumber The PCD token number to retrieve a current value for.
870 @return Returns the 64-bit value for the token specified by TokenNumber.
880 This function provides a means by which to retrieve a value for a given PCD token.
884 @param[in] TokenNumber The PCD token number to retrieve a current value for.
896 This function provides a means by which to retrieve a value for a given PCD token.
898 Returns the Boolean value of the token specified by TokenNumber.
900 @param[in] TokenNumber The PCD token number to retrieve a current value for.
902 @return Returns the Boolean value of the token specified by TokenNumber.
914 @param[in] TokenNumber The PCD token number to retrieve a current value for.
926 This function provides a means by which to retrieve a value for a given PCD token.
928 Returns the 8-bit value for the token specified by TokenNumber and Guid.
932 @param[in] Guid Pointer to a 128-bit unique value that designates
933 which namespace to retrieve a value from.
934 @param[in] TokenNumber The PCD token number to retrieve a current value for.
947 This function provides a means by which to retrieve a value for a given PCD token.
949 Returns the 16-bit value for the token specified by TokenNumber and Guid.
953 @param[in] Guid Pointer to a 128-bit unique value that designates
954 which namespace to retrieve a value from.
955 @param[in] TokenNumber The PCD token number to retrieve a current value for.
968 Returns the 32-bit value for the token specified by TokenNumber and Guid.
971 @param[in] Guid Pointer to a 128-bit unique value that designates
972 which namespace to retrieve a value from.
973 @param[in] TokenNumber The PCD token number to retrieve a current value for.
986 This function provides a means by which to retrieve a value for a given PCD token.
988 Returns the 64-bit value for the token specified by TokenNumber and Guid.
992 @param[in] Guid Pointer to a 128-bit unique value that designates
993 which namespace to retrieve a value from.
994 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1007 This function provides a means by which to retrieve a value for a given PCD token.
1013 @param[in] Guid Pointer to a 128-bit unique value that designates
1014 which namespace to retrieve a value from.
1015 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1028 This function provides a means by which to retrieve a value for a given PCD token.
1030 Returns the Boolean value of the token specified by TokenNumber and Guid.
1034 @param[in] Guid Pointer to a 128-bit unique value that designates
1035 which namespace to retrieve a value from.
1036 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1055 @param[in] Guid Pointer to a 128-bit unique value that designates
1056 which namespace to retrieve a value from.
1057 @param[in] TokenNumber The PCD token number to retrieve a current value for.
1070 This function provides a means by which to set a value for a given PCD token.
1072 Sets the 8-bit value for the token specified by TokenNumber
1073 to the value specified by Value.
1075 @param[in] TokenNumber The PCD token number to set a current value for.
1076 @param[in] Value The 8-bit value to set.
1085 IN UINT8 Value
1089 This function provides a means by which to set a value for a given PCD token.
1091 Sets the 16-bit value for the token specified by TokenNumber
1092 to the value specified by Value.
1094 @param[in] TokenNumber The PCD token number to set a current value for.
1095 @param[in] Value The 16-bit value to set.
1104 IN UINT16 Value
1108 This function provides a means by which to set a value for a given PCD token.
1110 Sets the 32-bit value for the token specified by TokenNumber
1111 to the value specified by Value.
1113 @param[in] TokenNumber The PCD token number to set a current value for.
1114 @param[in] Value The 32-bit value to set.
1123 IN UINT32 Value
1127 This function provides a means by which to set a value for a given PCD token.
1129 Sets the 64-bit value for the token specified by TokenNumber
1130 to the value specified by Value.
1132 @param[in] TokenNumber The PCD token number to set a current value for.
1133 @param[in] Value The 64-bit value to set.
1142 IN UINT64 Value
1146 This function provides a means by which to set a value for a given PCD token.
1148 Sets a buffer for the token specified by TokenNumber to the value specified
1160 @param[in] TokenNumber The PCD token number to set a current value for.
1176 This function provides a means by which to set a value for a given PCD token.
1178 Sets the boolean value for the token specified by TokenNumber
1179 to the value specified by Value.
1181 @param[in] TokenNumber The PCD token number to set a current value for.
1182 @param[in] Value The boolean value to set.
1191 IN BOOLEAN Value
1195 This function provides a means by which to set a value for a given PCD token.
1197 Sets the 8-bit value for the token specified by TokenNumber
1198 to the value specified by Value.
1202 @param[in] Guid The pointer to a 128-bit unique value that
1203 designates which namespace to set a value from.
1204 @param[in] TokenNumber The PCD token number to set a current value for.
1205 @param[in] Value The 8-bit value to set.
1215 IN UINT8 Value
1219 This function provides a means by which to set a value for a given PCD token.
1221 Sets the 16-bit value for the token specified by TokenNumber
1222 to the value specified by Value.
1226 @param[in] Guid The pointer to a 128-bit unique value that
1227 designates which namespace to set a value from.
1228 @param[in] TokenNumber The PCD token number to set a current value for.
1229 @param[in] Value The 16-bit value to set.
1239 IN UINT16 Value
1243 This function provides a means by which to set a value for a given PCD token.
1245 Sets the 32-bit value for the token specified by TokenNumber
1246 to the value specified by Value.
1250 @param[in] Guid The pointer to a 128-bit unique value that
1251 designates which namespace to set a value from.
1252 @param[in] TokenNumber The PCD token number to set a current value for.
1253 @param[in] Value The 32-bit value to set.
1263 IN UINT32 Value
1267 This function provides a means by which to set a value for a given PCD token.
1269 Sets the 64-bit value for the token specified by TokenNumber
1270 to the value specified by Value.
1274 @param[in] Guid The pointer to a 128-bit unique value that
1275 designates which namespace to set a value from.
1276 @param[in] TokenNumber The PCD token number to set a current value for.
1277 @param[in] Value The 64-bit value to set.
1287 IN UINT64 Value
1291 This function provides a means by which to set a value for a given PCD token.
1293 Sets a buffer for the token specified by TokenNumber to the value specified by
1303 @param[in] Guid Pointer to a 128-bit unique value that
1304 designates which namespace to set a value from.
1305 @param[in] TokenNumber The PCD token number to set a current value for.
1322 This function provides a means by which to set a value for a given PCD token.
1324 Sets the boolean value for the token specified by TokenNumber
1325 to the value specified by Value.
1329 @param[in] Guid The pointer to a 128-bit unique value that
1330 designates which namespace to set a value from.
1331 @param[in] TokenNumber The PCD token number to set a current value for.
1332 @param[in] Value The boolean value to set.
1342 IN BOOLEAN Value
1348 Firstly, it notifies the module that did the registration that the value of this
1351 the set operation and override the value been set if necessary. After the invocation of
1378 @param[in] Guid Pointer to a 128-bit unique value that designates which
1379 namespace to set a value from. If NULL, then the default
1426 @param[in] Guid Pointer to a 128-bit unique value that designates which namespace
1427 to set a value from. If NULL, then the default token space is used.
1461 Sets a value of a patchable PCD entry that is type pointer.
1463 Sets the PCD entry specified by PatchVariable to the value specified by Buffer
1493 Sets a value of a patchable PCD entry that is type pointer.
1495 Sets the PCD entry specified by PatchVariable to the value specified
1525 Sets a value and size of a patchable PCD entry that is type pointer.
1527 Sets the PCD entry specified by PatchVariable to the value specified by Buffer
1560 Sets a value and size of a patchable PCD entry that is type pointer.
1562 Sets the PCD entry specified by PatchVariable to the value specified
1626 …This includes information such as the type of value the TokenNumber is associated with as well as …
1645 …This includes information such as the type of value the TokenNumber is associated with as well as …
1650 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
1667 …default SKU Id value of 0 is returned. If the platform has set a SKU Id, then the currently set SKU