Lines Matching full:value
35 For each item (token), the database can hold a single value that applies to all SKUs, or multiple
36 values, where each value is associated with a specific SKU Id. Items with multiple, SKU-specific
39 not SKU enabled, the system ignores any set SKU Id and works with the single value for that token.
42 …SKU Id. If the system attempts to use the default SKU Id and no value has been set for that Id, the
45 @param[in] SkuId The SKU value to set.
54 Retrieves an 8-bit value for a given PCD token.
57 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
60 @return 8-bit value for a given PCD token.
70 Retrieves the current word-sized value for a PCD token number.
73 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
76 @return word-sized value for a given PCD token.
86 Retrieves the current 32-bit sized value for a PCD token number.
89 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
92 @return 32-bit value for a given PCD token.
102 Retrieves the 64-bit sized value for a PCD token number.
105 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
108 @return 64-bit value for a given PCD token.
119 Retrieves the current pointer to the value for a PCD token number. Do not make any assumptions
123 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
126 @return pointer to a value for a given PCD token.
136 Retrieves the current BOOLEAN-sized value for a PCD token number. If the TokenNumber is
139 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
142 @return Boolean value for a given PCD token.
155 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
158 @return the size of the value for a given PCD token.
168 Sets an 8-bit value for a given PCD token.
170 When the PCD service sets a value, it will check to ensure that the size of the value being set is
173 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
175 @param[in] Value The value to set for the PCD token.
177 @retval EFI_SUCCESS The PCD service has set the value requested
188 IN UINT8 Value
192 Sets an 16-bit value for a given PCD token.
194 When the PCD service sets a value, it will check to ensure that the size of the value being set is
197 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
199 @param[in] Value The value to set for the PCD token.
201 @retval EFI_SUCCESS The PCD service has set the value requested
212 IN UINT16 Value
216 Sets an 32-bit value for a given PCD token.
218 When the PCD service sets a value, it will check to ensure that the size of the value being set is
221 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
223 @param[in] Value The value to set for the PCD token.
225 @retval EFI_SUCCESS The PCD service has set the value requested
236 IN UINT32 Value
240 Sets an 64-bit value for a given PCD token.
242 When the PCD service sets a value, it will check to ensure that the size of the value being set is
245 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
247 @param[in] Value The value to set for the PCD token.
249 @retval EFI_SUCCESS The PCD service has set the value requested
260 IN UINT64 Value
264 Sets a value of a specified size for a given PCD token.
266 When the PCD service sets a value, it will check to ensure that the size of the value being set is
269 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
271 …@param[in] SizeOfValue The length of the value being set for the PCD token. If too large of a l…
272 specified, upon return from this function the value of SizeOfValue will
274 @param[in] Buffer A pointer to the buffer containing the value to set for the PCD token.
276 @retval EFI_SUCCESS The PCD service has set the value requested
292 Sets a Boolean value for a given PCD token.
294 When the PCD service sets a value, it will check to ensure that the size of the value being set is
297 …aram[in] Guid The 128-bit unique value that designates the namespace from which to extra…
299 @param[in] Value The value to set for the PCD token.
301 @retval EFI_SUCCESS The PCD service has set the value requested
312 IN BOOLEAN Value
325 Specifies a function to be called anytime the value of a designated token is changed.
327 …n] Guid The 128-bit unique value that designates the namespace from which to extra…
329 …@param[in] CallBackFunction The function prototype called when the value associated with the C…
345 …n] Guid The 128-bit unique value that designates the namespace from which to extra…
347 …@param[in] CallBackFunction The function prototype called when the value associated with the C…
365 …@param[in] Guid The 128-bit unique value that designates the namespace from which …
367 … retrieve the "first" token, have the pointer reference a TokenNumber value of 0.
368 @retval EFI_SUCCESS The PCD service has retrieved the value requested
386 … token namespace, an error is returned and the value of *Guid is undefined.
388 @retval EFI_SUCCESS The PCD service retrieved the value requested.